    /* Clean CSS with simple container system */
    :root {
        /* SECTION-SPECIFIC VARIABLES */
        --export-oem-primary: #fbc430;
        --export-oem-heading-color: #383455;
        --export-oem-text-color: #303030;
        --export-oem-white: #ffffff;
        --export-oem-overlay: rgba(0, 0, 0, 0.6);

        /* Fonts */
        --export-oem-body-font: "Inter", sans-serif;
        --export-oem-heading-font: "Montserrat", sans-serif;

        /* Container variables */
        --container-max-width: 1200px;
        --container-padding-left: 15px;
        --container-padding-right: 15px;
    }

    /* Reset & Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--export-oem-body-font);
        color: var(--export-oem-text-color);
        background-color: var(--export-oem-white);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    p {
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Container System */
    .container {
        max-width: 1200px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* --- Hero Section --- */
    .export-hero {
        position: relative;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("../images/product-hero.png");
        /* Adjusted path */
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    /* Overlay */
    .export-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--export-oem-overlay);
        z-index: 1;
    }

    .export-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .export-hero h1 {
        font-family: var(--export-oem-heading-font);
        font-weight: 600;
        font-size: 50px;
        line-height: 1.22;
        color: var(--export-oem-primary);
        margin-bottom: 10px;
    }

    .export-hero p {
        font-family: var(--export-oem-body-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        color: var(--export-oem-white);
        max-width: 970px;
    }

    /* --- Content Sections --- */
    .content-section {
        padding: 80px 0;
        background-color: var(--export-oem-white);
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    /* Image Column Styles */
    .image-col {
        position: relative;
        width: 100%;
        max-width: 570px;
        /* Aspect ratio based on 570x500 */
        aspect-ratio: 570 / 500;
    }

    .image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    /* Main Image Container */
    .main-image-container {
        position: relative;
        width: 500px;
        height: 500px;
        z-index: 10;
        /* Force photo to always be above decorative borders */
    }

    .main-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Masking effect simulated with clip-path or border-radius if needed, 
               but design uses a subtract boolean operation which implies a shape. 
               Using simple image for implementation. */
    }

    /* Decorative Elements */
    .deco-rect-1 {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 430px;
        height: 457px;
        border: 3px solid var(--export-oem-primary);
        border-radius: 10px;
        z-index: 1;
        /* Keep border below the photo */
        pointer-events: none;
    }

    /* Text Column Styles */
    .text-col {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .section-header {
        display: flex;
        flex-direction: column;
        gap: 0px;
        /* Reduced from 20px */
    }

    .section-header h2 {
        font-family: var(--export-oem-heading-font);
        font-weight: 600;
        font-size: 32px;
        line-height: 1.22;
        color: var(--export-oem-heading-color);
    }

    .divider {
        width: 106px;
        height: 2px;
        background-color: var(--export-oem-primary);
    }

    .section-description {
        font-family: var(--export-oem-body-font);
        font-weight: 400;
        font-size: 18px;
        line-height: 1.6;
        color: #303030;
        margin-top: 20px;
        /* Added space between underline and text */
    }

    /* Feature List */
    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .feature-list h3 {
        font-family: var(--export-oem-body-font);
        font-weight: 600;
        font-size: 18px;
        color: #303030;
        margin-bottom: 8px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        border: none !important;
        margin-bottom: 5px;
    }

    .arrow-icon {
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .arrow-icon img {
        width: 8px;
        height: 15px;
    }

    .feature-text {
        font-family: var(--export-oem-body-font);
        font-weight: 400;
        font-size: 18px;
        color: #000000;
    }

    /* --- Responsive Design --- */
    @media (max-width: 991px) {
        .export-hero {
            min-height: 300px;
            padding: 50px 0;
        }

        .export-hero h1 {
            font-size: 36px;
        }

        .export-hero p {
            font-size: 15px;
        }

        .content-section {
            padding: 60px 0;
        }

        .content-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        /* Ensure image appears first on mobile for all sections */
        .content-section:nth-child(3) .content-grid,
        .content-section:nth-child(5) .content-grid,
        .content-section:nth-child(7) .content-grid {
            display: flex;
            flex-direction: column-reverse;
        }

        .image-col {
            margin: 0 auto;
            max-width: 450px;
        }

        /* Adjust decorative elements for smaller screens */
        .deco-rect-1,
        .deco-rect-2,
        .deco-rect-3 {
            display: none;
        }

        .main-image-container {
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
        }

        .main-image-container img {
            border-radius: 10px;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .section-description {
            font-size: 16px;
        }

        .feature-text {
            font-size: 16px;
        }

        .text-col {
            gap: 25px;
        }
    }

    @media (max-width: 767px) {
        .export-hero {
            min-height: auto;
            padding: 45px 0;
        }

        .export-hero h1 {
            font-size: 28px;
        }

        .export-hero p {
            font-size: 14px;
        }

        .content-section {
            padding: 45px 0;
        }

        .image-col {
            max-width: 100%;
        }

        .section-header h2 {
            font-size: 24px;
        }

        .divider {
            width: 80px;
        }

        .section-description {
            font-size: 15px;
            margin-top: 15px;
        }

        .feature-list {
            gap: 15px;
        }

        .feature-list h3 {
            font-size: 16px;
        }

        .feature-item {
            gap: 12px;
        }

        .arrow-icon {
            width: 22px;
            height: 22px;
        }

        .feature-text {
            font-size: 15px;
        }

        .text-col {
            gap: 20px;
        }
    }

    /* --- CTA SECTION --- */
    .cta-section {
        background-color: var(--export-oem-primary);
        padding: 50px 0;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 80px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-family: var(--export-oem-heading-font);
        font-weight: 600;
        font-size: 30px;
        color: #101010;
        margin-bottom: 18px;
    }

    .cta-section p {
        font-family: var(--export-oem-body-font);
        font-size: 16px;
        color: #323232;
        margin-bottom: 34px;
        max-width: 800px;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--export-oem-white);
        color: #101010;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 18px;
        padding: 12px 26px;
        border-radius: 10px;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
    }

    /* Decorative blurred circles for CTA */
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: #ef8407;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
    }

    .cta-section::before {
        right: -50px;
        top: -50px;
        left: auto;
        transform: none;
    }

    .cta-section::after {
        left: -50px;
        bottom: -50px;
        top: auto;
        right: auto;
        transform: none;
    }