.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 60px 60px 0 0;
    margin-top: 80px;
}

.about-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(28, 43, 27, 0.85);
    backdrop-filter: blur(3px);
    z-index: 2;
}

.about-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-text-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-text-block {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-paragraph {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-text-paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .about-hero-section {
        min-height: 90vh;
    }
    
    .about-main-title {
        font-size: 4rem;
    }
}

@media (max-width: 1200px) {
    .about-hero-section {
        min-height: 80vh;
        border-radius: 50px 50px 0 0;
    }
    
    .about-main-title {
        font-size: 3.5rem;
    }
    
    .about-text-paragraph {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .about-hero-section {
        min-height: 70vh;
        border-radius: 40px 40px 0 0;
    }
    
    .about-main-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .about-text-paragraph {
        font-size: 1.2rem;
        margin-bottom: 28px;
    }
    
    .about-content-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 100vh;
        border-radius: 30px 30px 0 0;
        margin-bottom: 0;
    }
    
    .about-main-title {
        font-size: 2.5rem;
        margin-bottom: 35px;
    }
    
    .about-text-paragraph {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .about-content-wrapper {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
    }
    
    .about-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-text-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .about-content-wrapper {
        padding: 0 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-background-image {
        background-attachment: scroll;
    }
}

@media print {
    .about-hero-section {
        background: #2D4A2D !important;
        min-height: auto !important;
        padding: 60px 20px !important;
        border-radius: 0 !important;
        margin-top: 40px !important;
    }
    
    .about-background-image,
    .about-background-wrapper {
        display: none !important;
    }
    
    .about-video-overlay {
        display: none !important;
    }
}