/* Import base styles */
@import url('styles.css');

/* About Page Hero - Different background image */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-about.jpg');
    background-size: cover;
    background-position: center;
}

/* Ensure reverse class properly positions image on right */
.image-text-section.reverse {
    flex-direction: row-reverse;
}

.image-text-section.reverse .image-content {
    order: 2;
}

.image-text-section.reverse .text-content {
    order: 1;
}

.final-cta-about {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/sunset.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
}

.final-cta-content-about {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .image-text-section.reverse {
        flex-direction: column;
    }
    
    .image-text-section.reverse .image-content,
    .image-text-section.reverse .text-content {
        order: initial;
    }
}