```css
/* =========================================================
   NECTAFRESH - QUALITY POLICY PAGE
   ========================================================= */

.quality-policy-page {
    --qp-green: #075c35;
    --qp-dark-green: #06452a;
    --qp-light-green: #edf6e9;
    --qp-pale-green: #f6f9ef;
    --qp-cream: #faf9f1;
    --qp-border: #e2e7d8;
    --qp-text: #202b25;
    --qp-muted: #66706a;
    --qp-white: #ffffff;

    color: var(--qp-text);
    background: #fff;
    overflow: hidden;
}

.quality-policy-page *,
.quality-policy-page *::before,
.quality-policy-page *::after {
    box-sizing: border-box;
}

.qp-container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.qp-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(244, 248, 231, 0.98) 0%,
            rgba(244, 248, 231, 0.92) 32%,
            rgba(244, 248, 231, 0.35) 56%,
            rgba(255, 255, 255, 0) 78%
        ),
        url("../images/quality-policy-hero.png") center right / cover no-repeat;
}

.qp-hero-content {
    position: relative;
    z-index: 2;
}

.qp-hero-text {
    max-width: 540px;
    padding: 65px 0;
}

.qp-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: var(--qp-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.qp-hero h1 {
    margin: 0 0 18px;
    color: var(--qp-green);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
}

.qp-hero h2 {
    margin: 0;
    color: #17251e;
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.4;
    font-weight: 500;
}

.qp-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 25px 0;
    background: var(--qp-green);
}

.qp-hero p {
    max-width: 510px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.qp-section {
    padding: 75px 0;
}

.qp-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 42px;
}

.qp-section-heading span {
    width: 48px;
    height: 1px;
    background: #9db59b;
}

.qp-section-heading h2 {
    margin: 0;
    color: var(--qp-green);
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.qp-section-intro {
    max-width: 680px;
    margin: -20px auto 45px;
    color: var(--qp-muted);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}


/* =========================================================
   QUALITY PRINCIPLES
   ========================================================= */

.qp-principles {
    background: #fff;
}

.qp-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.qp-principle-card {
    padding: 35px 25px;
    background: var(--qp-cream);
    border: 1px solid var(--qp-border);
    border-radius: 12px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.qp-principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 70, 40, .08);
}

.qp-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9f2d9;
    color: var(--qp-green);
    font-size: 34px;
}

.qp-principle-card h3 {
    margin: 0 0 12px;
    color: #163a27;
    font-size: 18px;
}

.qp-principle-card p {
    margin: 0;
    color: var(--qp-muted);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   PROCESS
   ========================================================= */

.qp-process-section {
    padding-top: 30px;
    background: #fff;
}

.qp-process {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.qp-process-item {
    flex: 1;
    text-align: center;
}

.qp-process-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5e3;
    color: var(--qp-green);
    font-size: 30px;
}

.qp-process-item h3 {
    margin: 0 0 8px;
    color: #173d29;
    font-size: 16px;
}

.qp-process-item p {
    max-width: 170px;
    margin: 0 auto;
    color: var(--qp-muted);
    font-size: 13px;
    line-height: 1.55;
}

.qp-process-arrow {
    padding-top: 30px;
    color: var(--qp-green);
    font-size: 22px;
}


/* =========================================================
   QUALITY ASSURANCE
   ========================================================= */

.qp-assurance {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    background: var(--qp-pale-green);
    border: 1px solid var(--qp-border);
    border-radius: 12px;
}

.qp-assurance-content {
    padding: 50px;
}

.qp-small-label {
    display: block;
    margin-bottom: 10px;
    color: var(--qp-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.qp-assurance h2 {
    margin: 0 0 16px;
    color: var(--qp-green);
    font-size: 34px;
}

.qp-assurance-content > p {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--qp-muted);
    font-size: 15px;
    line-height: 1.7;
}

.qp-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 25px;
}

.qp-check-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
}

.qp-check-list i {
    color: #4b8b32;
    font-size: 16px;
}

.qp-assurance-image {
    min-height: 380px;
}

.qp-assurance-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   CERTIFICATIONS
   ========================================================= */

.qp-certifications {
    padding-top: 45px;
}

.qp-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.qp-cert-card {
    padding: 28px 20px;
    border: 1px solid var(--qp-border);
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

.qp-cert-logo {
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qp-cert-logo img {
    max-width: 120px;
    max-height: 70px;
    object-fit: contain;
}

.qp-cert-card h3 {
    margin: 0 0 8px;
    color: var(--qp-green);
    font-size: 17px;
}

.qp-cert-card p {
    margin: 0;
    color: var(--qp-muted);
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   FINAL COMMITMENT
   ========================================================= */

.qp-commitment {
    position: relative;
    padding: 55px 0 40px;
    background:
        linear-gradient(
            90deg,
            rgba(4, 73, 43, .98),
            rgba(4, 92, 53, .95)
        ),
        url("../images/rice-field.webp") center / cover no-repeat;
    color: #fff;
}

.qp-commitment-inner {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 30px;
}

.qp-commitment-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--qp-green);
    font-size: 32px;
}

.qp-commitment .qp-small-label {
    color: #cbe8b8;
}

.qp-commitment h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.qp-commitment-content p {
    max-width: 690px;
    margin: 0 0 10px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.7;
}

.qp-commitment-content strong {
    font-size: 14px;
}

.qp-commitment-points {
    display: flex;
    gap: 28px;
}

.qp-commitment-points div {
    min-width: 95px;
    text-align: center;
}

.qp-commitment-points i {
    display: block;
    margin-bottom: 8px;
    font-size: 25px;
}

.qp-commitment-points span {
    font-size: 12px;
    line-height: 1.35;
}

.qp-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 38px;
}

.qp-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    color: var(--qp-green);
    background: #fff;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.qp-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.qp-cta a i:last-child {
    margin-left: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .qp-principles-grid,
    .qp-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qp-process {
        flex-wrap: wrap;
    }

    .qp-process-item {
        flex: 0 0 calc(33.33% - 20px);
    }

    .qp-process-arrow {
        display: none;
    }

    .qp-assurance {
        grid-template-columns: 1fr;
    }

    .qp-assurance-image {
        min-height: 300px;
    }

    .qp-commitment-inner {
        grid-template-columns: 80px 1fr;
    }

    .qp-commitment-points {
        grid-column: 2;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .qp-container {
        width: min(100% - 30px, 600px);
    }

    .qp-hero {
        min-height: 560px;
        background:
            linear-gradient(
                180deg,
                rgba(244,248,231,.94) 0%,
                rgba(244,248,231,.88) 45%,
                rgba(255,255,255,.15) 100%
            ),
            url("../images/quality-policy-hero.webp") center / cover no-repeat;
    }

    .qp-hero-text {
        padding: 45px 0;
    }

    .qp-hero h1 {
        font-size: 44px;
    }

    .qp-hero h2 {
        font-size: 19px;
    }

    .qp-hero p {
        font-size: 14px;
    }

    .qp-section {
        padding: 55px 0;
    }

    .qp-section-heading {
        gap: 10px;
        margin-bottom: 30px;
    }

    .qp-section-heading span {
        width: 25px;
    }

    .qp-section-heading h2 {
        font-size: 23px;
    }

    .qp-principles-grid,
    .qp-cert-grid {
        grid-template-columns: 1fr;
    }

    .qp-principle-card {
        padding: 28px 22px;
    }

    .qp-process {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .qp-process-item {
        flex: none;
    }

    .qp-process-icon {
        width: 68px;
        height: 68px;
        font-size: 25px;
    }

    .qp-process-item h3 {
        font-size: 15px;
    }

    .qp-process-item p {
        font-size: 12px;
    }

    .qp-assurance-content {
        padding: 30px 22px;
    }

    .qp-assurance h2 {
        font-size: 29px;
    }

    .qp-check-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .qp-assurance-image {
        min-height: 250px;
    }

    .qp-cert-card {
        padding: 25px 20px;
    }

    .qp-commitment {
        padding: 45px 0 30px;
    }

    .qp-commitment-inner {
        display: block;
        text-align: center;
    }

    .qp-commitment-icon {
        margin: 0 auto 22px;
    }

    .qp-commitment h2 {
        font-size: 25px;
    }

    .qp-commitment-content p {
        font-size: 13px;
    }

    .qp-commitment-points {
        justify-content: center;
        margin-top: 28px;
    }

    .qp-commitment-points div {
        min-width: 80px;
    }

    .qp-cta {
        flex-direction: column;
        margin-top: 30px;
    }

    .qp-cta a {
        justify-content: center;
    }
}
```
