   /* ===== 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;
            }
        }