/* About Page Styles */

.main-content {
    padding: 120px 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--dark, #0A0E27);
    margin-bottom: 1rem;
}

.main-subtitle {
    font-size: 1.25rem;
    color: var(--gray, #6B7280);
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.team-member {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fb;
    border-radius: 16px;
    border-left: 6px solid var(--primary, #0066FF);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid var(--primary, #0066FF);
}

.member-placeholder {
    width: 180px;
    height: 240px;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    border-radius: 12px;
    border: 4px solid var(--primary, #0066FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.member-info h3 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary, #0066FF);
}

.member-title {
    font-weight: 600;
    color: #666;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.member-highlight {
    background: linear-gradient(135deg, #ffd500, #ffed4a);
    color: #0066FF;
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    margin: 1.5rem 0;
    border-left: 6px solid #0066FF;
    font-size: 1.1rem;
}

.member-bio {
    color: #555;
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary, #0066FF);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    border-radius: 20px;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #0066FF;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .member-photo img,
    .member-placeholder {
        width: 150px;
        height: 200px;
        margin: 0 auto;
    }
}