/* ==========================================================================
   AGRO PLUS - ABOUT PAGE
   ========================================================================== */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.7;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   PAGE LAYOUT
   ========================================================================== */

.about-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.category-meta {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #28a745;
    margin-bottom: 15px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 20px;
}

.about-hero-subtitle {
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555555;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.about-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* ==========================================================================
   STORY SECTION
   ========================================================================== */

.about-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 100px;
}

.story-rich-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444444;
}

.highlight-subtext {
    display: block;
    margin-top: 25px;
    padding: 18px;
    background: rgba(40, 167, 69, 0.06);
    border-left: 5px solid #28a745;
    font-weight: 600;
    color: #111111;
}

.story-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ==========================================================================
   COMMODITY SECTION
   ========================================================================== */

.commodities-section {
    margin-top: 120px;
}

.commodities-rows-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 60px;
}

.commodity-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.commodity-row.row-reverse {
    flex-direction: row-reverse;
}

.commodity-text-column {
    flex: 1.5;
}

.commodity-image-column {
    flex: 1;
}

.commodity-row-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.commodity-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #28a745;
    margin-bottom: 15px;
}

.commodity-row-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 18px;
}

.commodity-row-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ==========================================================================
   SECTION SPACING
   ========================================================================== */

section {
    margin-bottom: 100px;
}

/* ==========================================================================
   TABLET RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {

    .about-page-layout {
        padding-top: 120px;
    }

    .about-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commodity-row,
    .commodity-row.row-reverse {
        flex-direction: column;
        gap: 35px;
    }

    .commodity-text-column,
    .commodity-image-column {
        width: 100%;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-section-heading {
        font-size: 2rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .about-page-layout {
        padding: 90px 20px 60px;
    }

    .category-meta {
        font-size: 0.8rem;
    }

    .about-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .about-hero-subtitle {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-section-heading {
        font-size: 1.8rem;
    }

    .story-rich-text p,
    .commodity-row-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .commodity-row-title {
        font-size: 1.6rem;
    }

    .commodity-row-img {
        height: 260px;
    }

    .commodities-rows-container {
        gap: 70px;
    }

    section {
        margin-bottom: 70px;
    }
}

/* ==========================================================================
   SMALL PHONES
   ========================================================================== */

@media (max-width: 480px) {

    .about-page-layout {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-hero-title {
        font-size: 1.9rem;
    }

    .about-section-heading {
        font-size: 1.5rem;
    }

    .commodity-row-title {
        font-size: 1.35rem;
    }

    .commodity-row-img {
        height: 220px;
        border-radius: 18px;
    }

    .story-rich-text p,
    .commodity-row-text {
        font-size: 0.95rem;
    }

    .highlight-subtext {
        padding: 14px;
        font-size: 0.95rem;
    }
}