   /* ===== EXACT VARIABLES FROM YOUR CODE ===== */
        :root {
            --brand-blue: #61b5c9;
            --grey-bg: #efeeee;
            --text-dark: #1a1f36;
            --text-muted: #4f566b;
            --container-width: 1200px;
        }

        * {
            box-sizing: border-box;
        }

        .sym-main-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- HERO SECTION --- */
        .sym-hero-wrapper {
            padding: 200px 0 120px;
            background: var(--grey-bg);
            position: relative;
        }

        .sym-hero-wrapper::after {
            content: "";
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 180px;
            background: white;
            transform: skewY(-3deg);
            z-index: 300;
        }

        .sym-hero-grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            align-items: center;
            position: relative;
            z-index: 2;
            top: 60px;
        }

        .sym-hero-heading-main {
            font-size: 32px;
            font-weight: 700;
            color: #1a1f36;
            line-height: 1.1;
            margin-bottom: 15px;
        }

        .sym-hero-body-text {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 88%;
            text-align: justify;
            line-height: 1.5;
        }

        .sym-scroll-media-column {
            height: 496px;
            position: relative;
            overflow: hidden;
            top: -15%;
            left: 20%;
        }

        .float-area {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .float-bubble {
            width: 70px;
            height: 70px;
            background: var(--brand-blue);
            border-radius: 50%;
            padding: 10px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            object-fit: contain;
            position: absolute;
            animation: floatUp linear infinite;
        }

        /* Animation Timings Maintained */
        .float-bubble:nth-child(1) {
            left: 10%;
            top: 5%;
            animation-duration: 12s;
        }

        .float-bubble:nth-child(2) {
            left: 35%;
            animation-duration: 16s;
        }

        .float-bubble:nth-child(3) {
            left: 65%;
            top: 5%;
            animation-duration: 13s;
        }

        .float-bubble:nth-child(4) {
            left: 45%;
            animation-duration: 18s;
        }

        .float-bubble:nth-child(5) {
            left: 75%;
            animation-duration: 14s;
        }

        .float-bubble:nth-child(6) {
            left: 25%;
            top: 5%;
            animation-duration: 28s;
        }

        .float-bubble:nth-child(7) {
            left: 55%;
            animation-duration: 17s;
        }

        .float-bubble:nth-child(8) {
            left: 85%;
            top: 5%;
            animation-duration: 17s;
        }

        .float-bubble:nth-child(9) {
            left: 20%;
            animation-duration: 18s;
            animation-delay: -9s;
        }

        .float-bubble:nth-child(10) {
            left: 60%;
            top: 5%;
            animation-duration: 21s;
            animation-delay: -10s;
        }

        .float-bubble:nth-child(11) {
            left: 25%;
            animation-duration: 19s;
            animation-delay: -8s;
        }

        .float-bubble:nth-child(12) {
            left: 85%;
            animation-duration: 22s;
            animation-delay: -11s;
        }

        .float-bubble:nth-child(13) {
            left: 40%;
            top: 5%;
            animation-duration: 25s;
            animation-delay: -12s;
        }

        .float-bubble:nth-child(14) {
            left: 70%;
            animation-duration: 20s;
            animation-delay: -13s;
        }

        .float-bubble:nth-child(15) {
            left: 40%;
            top: 5%;
            animation-duration: 23s;
            animation-delay: -14s;
        }

        .float-bubble:nth-child(16) {
            left: 10%;
            animation-duration: 26s;
            animation-delay: -15s;
        }

        @keyframes floatUp {
            0% {
                top: 100%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                top: -120px;
                opacity: 0;
            }
        }

        .sym-card-tag {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--brand-blue);
            padding: 6px 0px;
            display: inline-block;
        }

        .sym-hero-content-col {
            position: relative;
            top: -20%;
        }

        .apiss {
            font-size: 20px;
            font-weight: bold;
        }

        /* --- USDMF SECTION --- */
        .usdmf-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8px 20px 44px;
            position: relative;
            z-index: 500;
        }

        .usdmf-title {
            text-align: left;
            font-size: 22px;
            font-weight: 600;
            color: black;
            margin-bottom: 40px;
        }

        .usdmf-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 40px;
        }

        .usdmf-right {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .usdmf-card {
            border-radius: 6px;
            background: #fff;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            height: fit-content;
        }

        .usdmf-card-header {
            background: #84bcd0;
            color: #fff;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .usdmf-table-head {
            display: grid;
            grid-template-columns: 24px 90px 1fr;
            padding: 10px 16px;
            font-size: 12px;
            font-weight: 600;
            background: #f4f6f7;
            border-bottom: 1px solid #ddd;
        }

        .usdmf-row {
            display: grid;
            grid-template-columns: 113px 3fr;
            padding: 8px 16px;
            padding-left: 32px;
            font-size: 12.5px;
            border-bottom: 1px solid #eee;
        }

        .usdmf-product {
            text-transform: uppercase;
            line-height: 1.5;
        }

        .alpha {
            height: 14px;
            width: auto;
            vertical-align: middle;
        }

        /* --- CEP SECTION --- */
        .cep-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 33px 20px 90px;
            border-top: 2px solid #e2e2e2;
        }

        .cep-title {
            text-align: left;
            font-size: 22px;
            font-weight: 600;
            color: black;
            margin-bottom: 40px;
        }

        .cep-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 40px;
        }

        .cep-card {
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            height: fit-content;
            margin-top: 40px;
        }

        .cep-card-header {
            background: #84bcd0;
            color: #fff;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .cep-table-head {
            display: grid;
            grid-template-columns: 24px 1fr 220px;
            padding: 10px 16px;
            font-size: 12px;
            font-weight: 600;
            background: #fafafa;
            border-bottom: 1px solid #ddd;
        }

        .cep-row {
            display: grid;
            grid-template-columns: 24px 1fr 220px;
            padding: 8px 16px;
            font-size: 12.5px;
            border-bottom: 1px solid #eee;
        }

        .cep-product {
            text-transform: uppercase;
            line-height: 1.5;
        }

        .cep-code {
            text-align: left;
            white-space: nowrap;
        }

        .cep-btn-wrapper {
            display: flex;
            justify-content: space-between;
            margin-top: 55px;
        }

        .cep-btn {
            padding: 12px 28px;
            font-size: 14px;
            font-weight: 500;
            color: #6bb6c9;
            border: 1px solid #6bb6c9;
            background: transparent;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .cep-btn:hover {
            background: #6bb6c9;
            color: #fff;
        }

        @media(max-width:900px) {

            .usdmf-grid,
            .cep-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        
 /* --- Mobile Responsive Fixes --- */
@media (max-width: 991px) {
    /* 1. Fix the Hero Wrapper Spacing */
    .sym-prod-hero-wrapper {
        padding: 100px 0 60px; /* Reduced padding for smaller screens */
        text-align: center;
    }

    /* 2. Remove the Grid and stack columns */
    .sym-prod-hero-grid-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        top: 0; /* Resets the 'top: 60px' from desktop */
    }

    /* 3. Reset the Text Column offsets */
    .sym-prod-hero-content-col {
        position: static !important; /* Removes 'top: -20%' */
        padding: 0 15px;
    }

    /* 4. Center and Scale Text */
    .sym-prod-hero-heading-main {
        font-size: 28px;
        text-align: center;
    }

    .sym-prod-hero-body-text {
        max-width: 100%;
        text-align: center; /* Better for mobile readability */
        font-size: 15px;
    }

    /* 5. Fix the Bubble Column */
    .sym-prod-scroll-media-column {
        height: 300px; /* Much shorter for mobile */
        width: 100%;
        left: 0; /* Resets 'left: 20%' */
        top: 0;  /* Resets 'top: -15%' */
        margin-top: 20px;
    }

    /* 6. Scale Bubbles down so they don't block text */
    .sym-prod-float-bubble {
        width: 50px;
        height: 50px;
        padding: 8px;
    }

    /* 7. Adjust the Skewed Background (optional) */
    .sym-prod-hero-wrapper::after {
        height: 100px;
        bottom: -40px;
    }
}

/* Extra small devices (Phones) */
@media (max-width: 480px) {
    .sym-prod-hero-heading-main {
        font-size: 24px;
    }
    
    .sym-prod-scroll-media-column {
        height: 250px;
    }
}
 
 
 /* --- Regulatory Section Mobile Responsive Query --- */
@media (max-width: 991px) {
    /* 1. Adjust the wrapper padding for a tighter mobile fit */
    .sym-hero-wrapper {
        padding: 80px 0 50px;
        text-align: center;
        overflow: hidden; /* Prevents bubbles from causing sideways scroll */
    }

    /* 2. Convert Grid to Flex and stack columns vertically */
    .sym-hero-grid-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
        top: 0 !important; /* Resets any desktop offsets */
    }

    /* 3. Reset text column alignment */
    .sym-hero-content-col {
        position: static !important;
        padding: 0 15px;
        text-align: center;
    }

    /* 4. Optimize Typography for mobile */
    .sym-hero-heading-main {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .sym-hero-body-text {
        max-width: 100%;
        font-size: 15px;
        text-align: center; /* Better flow for mobile reading */
        line-height: 1.6;
    }

    .apiss {
        font-size: 18px;
        margin-top: 20px;
        display: block;
    }

    /* 5. Handle the Floating Bubbles Container */
    .sym-scroll-media-column {
        height: 280px; /* Limit height so it doesn't push page content too far down */
        width: 100%;
        left: 0 !important; /* Removes the desktop left: 20% offset */
        top: 0 !important;
        margin-top: 10px;
    }

    .float-area {
        width: 100%;
        height: 100%;
    }

    /* 6. Scale bubbles slightly for smaller screens */
    .float-bubble {
        width: 55px;
        height: 55px;
        padding: 8px;
    }

    /* 7. Ensure the skewed background doesn't eat too much content */
    .sym-hero-wrapper::after {
        height: 80px;
        bottom: -30px;
    }
}

/* Specific fix for very small phones */
@media (max-width: 480px) {
    .sym-hero-heading-main {
        font-size: 24px;
    }
    
    .sym-scroll-media-column {
        height: 220px;
    }
}
 
 
 /* --- USDMF & CEP Table Responsive Fixes --- */
@media (max-width: 991px) {
    /* 1. Ensure grids stack earlier for better readability */
    .usdmf-grid, 
    .cep-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    


    .usdmf-right, 
    .cep-right {
        gap: 20px;
    }

    /* 2. Fix USDMF Row: Adjust fixed 113px column for mobile */
    .usdmf-table-head {
        grid-template-columns: 24px 70px 1fr; /* Narrower DMF# column */
        font-size: 11px;
    }

    .usdmf-row {
        grid-template-columns: 80px 1fr; /* Matching head alignment */
        padding-left: 16px;
        font-size: 12px;
    }

    /* 3. Fix CEP Row: 220px is way too wide for mobile */
    .cep-table-head, 
    .cep-row {
        grid-template-columns: 20px 1fr 120px; /* Reduced CEP code width */
    }

    .cep-code {
        text-align: right;
        font-size: 11px;
        white-space: normal; /* Allow code to wrap if necessary */
    }

    /* 4. Center the Download Button on mobile */
    .cep-btn-wrapper {
        justify-content: center;
        margin-top: 35px;
    }
}

/* --- Specific fix for small phones (below 480px) --- */
@media (max-width: 480px) {
    /* Stack CEP name and code to prevent horizontal overflow */
    .cep-table-head {
        display: none; /* Hide header on very small screens to save space */
    }

    .cep-row {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 12px 16px;
    }

    .cep-dot {
        display: none; /* Hide dot to save horizontal space */
    }

    .cep-product {
        font-weight: 600;
        color: var(--text-dark);
    }

    .cep-code {
        text-align: left;
        color: var(--brand-blue);
        font-size: 12px;
    }
    
    .usdmf-row {
        grid-template-columns: 1fr; /* Stack DMF# and Product name */
        gap: 2px;
    }
}
 