
        body {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* .main {
            width: 100%;
            display: grid;
            place-items: center;
        }

        .main-box {
            width: 50%;
            display: grid;
            place-items: center;
        } */

        .fontNoto {
            font-family: 'Noto Sans', sans-serif;
        }

        .fontPoppins {
            font-family: 'Poppins', sans-serif;
        }

        .clippath_top {
            background: #f5ce19;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
            height: 20px;
        }

        .clippath_bottom {
            background: #f5ce19;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
            height: 20px;
        }

        .talk-bubble {
            position: relative;
            background: #000;
            border-radius: 10px;
            margin: 20px 10px;
        }

        .talk-bubble:before {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            left: 30px;
            top: 100%;
            border: 15px solid;
            border-color: #000 transparent transparent #000;
        }

        .talktext {
            padding: 20px;
            text-align: center;
            color: white;
        }

        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            box-sizing: border-box;
        }

        .marquee {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 15s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-100%, 0);
            }
        }

        .sticky-call-button {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: #1b1b1b;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @media (min-width: 768px) {
            .sticky-call-button {
                display: none;
            }
        }

        .product-img {
            max-height: 500px;
        }

        .call-button {
            display: flex;
            align-items: center;
            background: #e91b1b;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .benefit-icon {
            width: 40px;
            flex-shrink: 0;
            margin-right: 15px;
        }

        .product-showcase {
            transition: transform 0.3s ease;
        }

        .product-showcase:hover {
            transform: scale(1.02);
        }

        .order-button {
            display: inline-block;
            background: #e91b1b;
            color: white;
            padding: 10px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            margin: 15px 0;
            transition: background 0.3s;
        }

        .order-button:hover {
            background: #c62828;
            color: white;
        }

        .discount-badge {
            background: #1dbd3f;
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            margin: 10px 0;
            border: 2px dotted white;
        }

        .testimonial-card {
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            background: white;
        }

        .herb-card {
            text-align: center;
            padding: 20px 10px;
            margin-bottom: 20px;
        }

        .herb-image {
            max-width: 200px;
            margin: 0 auto 15px;
        }

        .floating-call {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: none;
        }

        @media (min-width: 768px) {
            .floating-call {
                display: block;
            }
        }

        .floating-call a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .bg-custom-gradient {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://imagedelivery.net/aacnHGAqlUDhaplA3bnkbA/2551c02c-bb7a-40c2-ba24-0f36cf2d3c00/public');
            background-size: cover;
            background-position: center;
        }

        .bg-custom-image {
            background: url('https://imagedelivery.net/aacnHGAqlUDhaplA3bnkbA/b856571c-41e7-45ac-69b1-ab2d7fbd6600/public');
            background-size: cover;
            background-position: center;
        }

        .black-curve {
            background: #710193;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 60%;
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        @media (max-width: 768px) {
            .black-curve {
                width: 140%;
            }
        }