/* ===================== About Us Page Styles ===================== */

/* About Hero Section */
.aboutHero {
    background: linear-gradient(135deg, #efe3b8 0%, #d4c89f 100%);
    min-height: clamp(350px, 45vh, 550px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #efe3b8;
    position: relative;
    padding: clamp(32px, 5vw, 80px) 20px;
}

.aboutHeroContent {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.aboutHero h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    color: #2c5530;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.aboutHero p {
    font-size: clamp(18px, 2.5vw, 28px);
    color: #234f2e;
    margin: 0;
    font-weight: 500;
}

/* About Sections - General */
.aboutSection {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    border-left: 1px solid #2c5530;
    border-right: 1px solid #2c5530;
    background: #fff;
}

.aboutContent {
    max-width: 1100px;
    margin: 0 auto;
}

.aboutTextBlock {
    max-width: 900px;
    margin: 0 auto;
}

.aboutTextBlock h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    margin: 0 0 clamp(32px, 4vw, 56px) 0;
}

.aboutTextBlock p {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: #333;
    margin: 0 0 1.8rem 0;
    text-align: center;
}

.aboutTextBlock p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Section */
.missionVision {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    background: #f9f7f0;
    border: 1px solid #2c5530;
}

.mvGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(32px, 5vw, 64px);
    max-width: 1100px;
    margin: 0 auto;
}

.mvCard {
    background: #fff;
    border: 2px solid #2c5530;
    border-radius: 2rem;
    padding: clamp(32px, 5vw, 56px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(44, 85, 48, 0.2);
}

.mvIcon {
    width: clamp(100px, 15vw, 140px);
    height: clamp(100px, 15vw, 140px);
    margin: 0 auto 2rem;
    border: 2px solid #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 32px);
}

.mvIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mvCard h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #2c5530;
    margin: 0 0 1.5rem 0;
}

.mvCard p {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Values Section */
.valuesSection {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    border: 1px solid #2c5530;
    background: #fff;
}

.valuesHeader {
    max-width: 900px;
    margin: 0 auto clamp(48px, 6vw, 80px);
    text-align: center;
}

.valuesHeader h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #2c5530;
    margin: 0 0 1rem 0;
}

.valuesHeader p {
    font-size: clamp(16px, 1.8vw, 22px);
    color: #555;
    margin: 0;
}

.valuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 3vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.valueCard {
    background: #fff;
    border: 2px solid #2c5530;
    border-radius: 1.5rem;
    padding: clamp(28px, 4vw, 48px);
    text-align: center;
    transition: all 0.3s ease;
}

.valueCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(44, 85, 48, 0.18);
    background: #f9f7f0;
}

.valueIcon {
    width: clamp(70px, 10vw, 100px);
    height: clamp(70px, 10vw, 100px);
    margin: 0 auto 1.5rem;
    border: 2px solid #2c5530;
    border-radius: 50%;
    padding: clamp(14px, 2vw, 20px);
    display: block;
}

.valueCard h4 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    color: #2c5530;
    margin: 0 0 1rem 0;
}

.valueCard p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Why Choose Section */
.whyChooseSection {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    background: #efe3b8;
    border: 1px solid #2c5530;
}

.whyContent {
    max-width: 1100px;
    margin: 0 auto;
}

.whyContent h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    margin: 0 0 clamp(48px, 6vw, 80px) 0;
}

.whyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(32px, 4vw, 56px);
}

.whyItem {
    background: #fff;
    border: 2px solid #2c5530;
    border-radius: 1.5rem;
    padding: clamp(28px, 4vw, 40px);
    text-align: center;
    transition: all 0.3s ease;
}

.whyItem:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(44, 85, 48, 0.15);
}

.whyNumber {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #2c5530;
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.whyItem h4 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #2c5530;
    margin: 0 0 1rem 0;
}

.whyItem p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Call to Action Section */
.aboutCTA {
    padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1f 100%);
    border: 1px solid #2c5530;
}

.ctaContent {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ctaContent h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

.ctaContent p {
    font-size: clamp(16px, 2vw, 22px);
    color: #efe3b8;
    margin: 0 0 clamp(32px, 5vw, 56px) 0;
    line-height: 1.6;
}

.ctaButtons {
    display: flex;
    gap: clamp(16px, 3vw, 32px);
    justify-content: center;
    flex-wrap: wrap;
}

.ctaButtons .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    min-width: 220px;
    background: #efe3b8;
    color: #2c5530;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: clamp(15px, 1.6vw, 18px);
    border: 2px solid #efe3b8;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctaButtons .cta:hover {
    background: #fff;
    color: #2c5530;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.ctaButtons .cta.ctaSecondary {
    background: transparent;
    color: #efe3b8;
    border: 2px solid #efe3b8;
}

.ctaButtons .cta.ctaSecondary:hover {
    background: #efe3b8;
    color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aboutSection,
    .missionVision,
    .valuesSection,
    .whyChooseSection,
    .aboutCTA {
        padding: 48px 20px;
    }

    .mvGrid {
        grid-template-columns: 1fr;
    }

    .valuesGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .whyGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
    }

    .ctaButtons .cta {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .aboutHero {
        min-height: 300px;
        padding: 40px 16px;
    }

    .aboutSection,
    .missionVision,
    .valuesSection,
    .whyChooseSection,
    .aboutCTA {
        padding: 40px 16px;
    }

    .mvCard,
    .valueCard,
    .whyItem {
        padding: 24px;
    }
}