/* About Page Styles */

/* Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/about/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
}

/* Who We Are Section */
.who-we-are-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.75rem;
}

.who-we-are-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.who-we-are-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.who-we-are-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-paragraph {
    font-size: 1.125rem;
    color: #1a1a2e;
    line-height: 1.7;
    text-align: left;
}

.who-paragraph strong {
    font-weight: 700;
}

.who-we-are-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 3rem 1.5rem;
    }
    
    .who-we-are-title {
        font-size: 2rem;
    }
    
    .who-we-are-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .who-paragraph {
        font-size: 1rem;
    }
    
    .who-we-are-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .who-we-are-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

