/* === HERO SECTION === */
.hero-about {
    position: relative;
    height: 400px;
    background: url('/static/images/about-us-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-about .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-about .hero-text {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-about h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-about p {
    font-size: 1.2rem;
    font-style: italic;
}


/* === ABOUT SECTION === */
.about-section {
    padding: 60px 20px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: #d35400;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


/* === CALL TO ACTION BUTTON === */
.cta-btn {
    display: inline-block;
    background: #d35400;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}


/* === MISSION & VISION SECTION === */
.mission-vision {
    background: #f9f9f9;
    padding: 50px 20px;
}

.mission-vision .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mv-box {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #d35400;
    text-align: center;
}

.mv-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.mv-box p {
    color: #555;
    font-size: 1rem;
}


/* === WHY CHOOSE US SECTION === */
.why-choose-us {
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.feature img {
    width: 60px;
    margin-bottom: 15px;
}

.feature h4 {
    color: #d35400;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}


/* === MEDIA QUERIES === */
@media screen and (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text, .about-image {
        padding: 0 10px;
    }

    .hero-about h1 {
        font-size: 2.2rem;
    }

    .hero-about p {
        font-size: 1rem;
    }

    .mv-box {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media screen and (max-width: 600px) {
    .hero-about {
        height: 300px;
    }

    .hero-about h1 {
        font-size: 1.8rem;
    }

    .hero-about p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .mv-box h3 {
        font-size: 1.2rem;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }
}
