    :root {
        --bs-accent: var(--bs-danger);
        --bs-grey: #5a6c65;
        /* --bs-primary: #2d5f3f;
            --bs-secondary: #4a8b5c;
            --bs-dark: #1a3a27;
            --bs-light: #e8f5ec;
            --bs-success: #3d8f52;
            --bs-warning: #ffa500; */
    }

    /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--bs-dark);
            line-height: 1.7;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Lora', serif;
            font-weight: 700;
            line-height: 1.3;
        } */

    /* Hero Section */
    .hero-section {
        background: linear-gradient(150deg, #1a2f1e 0%, var(--bs-dark) 35%, var(--bs-primary) 70%, var(--bs-secondary) 100%);
        color: white;
        padding: 6rem 0 5rem;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -15%;
        right: -8%;
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -12%;
        left: -6%;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(74, 139, 92, 0.12) 0%, transparent 70%);
        border-radius: 50%;
    }

    .food-icon-bg {
        position: absolute;
        top: 20%;
        right: 8%;
        font-size: 12rem;
        opacity: 0.04;
        color: white;
        transform: rotate(15deg);
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-section h1 {
        font-size: clamp(2.8rem, 5vw, 5.5rem);
        margin-bottom: 1.5rem;
        font-weight: 700;
        animation: fadeInUp 0.8s ease-out;
    }

    .haccp-badge {
        /* display: inline-block;
        background: var(--bs-accent);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1.5px; */
        animation: fadeInUp 0.8s ease-out 0.1s backwards;
    }

    .hero-lead {
        font-size: clamp(1.15rem, 2.5vw, 1.5rem);
        font-weight: 400;
        max-width: 950px;
        margin: 0 auto 2.5rem;
        opacity: 0.95;
        line-height: 1.65;
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .safety-pillars {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease-out 0.3s backwards;
    }

    /* .pillar-item {
        text-align: center;
        padding: 1.2rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 140px;
    }

    .pillar-icon {
        font-size: 2.2rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .pillar-text {
        font-size: 0.9rem;
        font-weight: 600;
    } */

    /* Breadcrumb */
    .breadcrumb-seo {
        background: var(--bs-light);
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .breadcrumb-seo a {
        color: var(--bs-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-seo a:hover {
        color: var(--bs-accent);
    }

    /* Section Styling */
    section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        color: var(--bs-primary);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 5px;
        background: var(--bs-accent);
        border-radius: 3px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--bs-grey);
        margin-bottom: 3rem;
    }

    /* Introduction */
    /* .intro-section {
        background: white;
    } */

    /* .intro-content {
        font-size: 1.1rem;
        line-height: 1.9;
    }

    .intro-content strong {
        color: var(--bs-primary);
        font-weight: 600;
    } */

    /* 7 Principles Section */
    .principles-section {
        background: var(--bs-light);
    }

    .principle-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-top-color: var(--bs-primary);
    }

    .principle-card h3 {
        color: var(--bs-primary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    /* CCP Section */
    .ccp-section {
        background: white;
    }

    .ccp-card {
        background: var(--bs-light);
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        border-left: 5px solid var(--bs-warning);
        transition: all 0.3s ease;
    }

    .ccp-card:hover {
        background: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(10px);
    }

    .ccp-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .ccp-badge {
        background: var(--bs-warning);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .ccp-card h3 {
        color: var(--bs-primary);
        font-size: 1.4rem;
        margin: 0;
    }

    /* Process Timeline */
    .process-section {
        background: linear-gradient(to bottom, var(--bs-light) 0%, white 100%);
    }

    .timeline-grid {
        position: relative;
        padding: 2rem 0;
    }

    .timeline-phase {
        position: relative;
        padding-left: 5rem;
        margin-bottom: 3rem;
    }

    .phase-marker {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.5rem;
        box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
        border: 4px solid white;
    }

    .phase-content {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .phase-content:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

    .phase-content h3 {
        color: var(--bs-primary);
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    /* Benefits Section */
    .benefits-section {
        background: var(--bs-dark);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .benefits-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .benefits-content {
        position: relative;
        z-index: 1;
    }

    .benefit-box {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-box:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-8px);
        border-color: var(--bs-accent);
    }

    .benefit-icon-large {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
        color: var(--bs-accent);
    }

    .benefit-box h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        color: white;
    }

    /* Sectors Section */
    .sectors-section {
        background: white;
    }

    .sector-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .sector-item {
        background: var(--bs-light);
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .sector-item:hover {
        background: white;
        border-color: var(--bs-primary);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .sector-icon-big {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        display: block;
    }

    .sector-item h3 {
        color: var(--bs-primary);
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    /* FAQ Section */
    .faq-section {
        background: var(--bs-light);
    }

    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        padding: 1.5rem 2rem;
        background: white;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--bs-primary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: var(--bs-light);
    }

    .faq-answer {
        padding: 0 2rem 1.5rem 2rem;
        color: var(--bs-grey);
        line-height: 1.8;
        display: none;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--bs-accent) 0%, #e67835 100%);
        color: white;
        text-align: center;
        padding: 5rem 0;
    }

    .btn-cta {
        background: white;
        color: var(--bs-accent);
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-cta:hover {
        background: var(--bs-dark);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Accessibility */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--bs-primary);
        color: white;
        padding: 8px;
        text-decoration: none;
        z-index: 100;
    }

    .skip-link:focus {
        top: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-section {
            padding: 4rem 0 3rem;
        }

        .food-icon-bg {
            font-size: 8rem;
        }

        section {
            padding: 3rem 0;
        }

        .timeline-phase {
            padding-left: 4rem;
        }

        .phase-marker {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .safety-pillars {
            gap: 1rem;
        }
    }