/* About Hero Section */
.about-hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    aspect-ratio: 21 / 9;
    width: 100%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 678px;
    width: 100%;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    color: white;
}

.about-hero-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    max-width: 622px;
    color: white;
}

.about-hero-btn {
    background-color: #fbf5f3;
    color: #333333;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 232px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-btn:hover {
    background-color: #0057B7;
    color: #fff
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 500px;
        padding: 16px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-text {
        font-size: 14px;
    }
    
    .about-hero-btn {
        font-size: 14px;
        min-width: 200px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 24px;
    }
    
    .about-hero-text {
        font-size: 13px;
    }
}
