/* About Page Intro Section */
.about-intro-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 12px;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.intro-highlight {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-number {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.highlight-label {
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: 500;
}

.intro-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.intro-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* About Page Team Section */
.about-page-team {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 30px 0;
    border-radius: 15px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-section-header h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-section-header p {
    color: #666;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-team-member {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #007bff;
    position: relative;
}

.about-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: 700;
    text-transform: uppercase;
}

.about-member-info h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-member-title {
    color: #007bff;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.about-member-email {
    color: #28a745;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-member-experience {
    color: #6c757d;
    font-size: 0.95em;
    margin-bottom: 15px;
    font-style: italic;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

.about-member-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.about-member-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.about-member-qualifications span {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    color: #1976d2;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .intro-highlight {
        flex-direction: row;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }
    
    .highlight-number {
        font-size: 2.2em;
    }
    
    .intro-text h2 {
        font-size: 2em;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-team-member {
        padding: 25px;
    }
    
    .about-member-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-section-header h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .intro-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight-number {
        font-size: 2em;
    }
    
    .intro-text h2 {
        font-size: 1.8em;
    }
}