/* About Page Styles */

.about-hero {
    padding: 180px 24px 60px;
    min-height: 100vh;
    background: black;
}

.about-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.6;
}

.about-powered {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    font-style: italic;
}

.about-powered a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-powered a:hover {
    color: white;
    text-decoration: underline;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-section {
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.mission-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.mission-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.leadership-section {
    margin-bottom: 40px;
}

.leadership-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: -0.3px;
}

.leader-card {
    padding: 50px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.leader-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.leader-title {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    font-weight: 400;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.linkedin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}

.leader-bio {
    max-width: 700px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto;
}

.company-info {
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.company-info h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.company-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.contact-section {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.contact-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 130px 16px 60px;
    }

    .about-title {
        font-size: 32px;
    }
    
    .leader-card {
        padding: 30px 20px;
    }
    
    .leader-photo {
        width: 150px;
        height: 150px;
    }
    
    .leader-card h3 {
        font-size: 24px;
    }
    
    .leader-title {
        font-size: 18px;
    }
    
    .leader-bio {
        font-size: 15px;
    }
    
    .mission-section,
    .company-info,
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons button {
        width: 100%;
    }
}