
        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #1e1e1e;
            color: white;
        }

        .product{
            padding-bottom: 50px;
        }

        li {
            padding-top: 20px    ;
        }

        .btn {
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            border: none;
            transition: background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
        }

        .btn.primary {
            background-color: none;
            color: white;
            border: 1px white solid;
        }

        .btn.primary:hover {
            background-color: white;
            color: black;
        }


        .test {
            text-align: center;
            padding: 10px 20px 80px;
        }

        .test h1 {
            font-size: 44px;
            line-height: 1.2;
            max-width: 800px;
            margin: 20px auto 40px;
            font-weight: normal;
        }

        .test h3 {
            font-weight: normal;
            max-width: 800px;
            margin: 0 auto 20px;
            font-size: 22px;
        }

        .test h4{
            font-weight: bold;
            margin-top: 20px;
        }

        .test-buttons {
            margin-top: 50px;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Feature section styling */
        .features-section {
            width: 90%;
            padding: 80px 10px;
            overflow: hidden;
            border-radius: 100px;
            margin: auto;
            height: auto;
        }

        .hero-img{
            width: 400px;
            height: auto;
            margin: auto;
            border-radius: 30px;
        }

        .rating-img{
            width: 250px;
            margin: auto;
        }

        .features-header {
            text-align: center;
            margin-top: -50px !important;
        }

        .features-header h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #101c45;
        }

        .features-header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            color: #4b5563;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 100px;
            height: auto;
        }

        .feature-row {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
        }

            .feature-row-3 {
            display: flex;
            align-items: center;
        }


        .feature-row.reverse {
            flex-direction: row-reverse;
        }

        .feature-text {
            flex: 1;
            padding: 0 40px;
        }

        .feature-text h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #101c45;
        }

        .feature-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #4b5563;
        }

        .feature-image {
            flex: 1;
            padding: 0 20px;
        }

              .feature-image-meals {
            flex: 1;
            padding: 0 20px;
        }

        .feature-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }


        .feature-image-meals img {
            width: 100%;
            max-width: 700px;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: auto;
        }

        /* Hamburger Menu Styling */
        .hamburger {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: #101c45;
        }

        .dropdown-menu {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {

               .disclaimer{
                 margin: auto;
                 padding-left: 0px;
                 padding-right: 0px;
                 padding-bottom: 20px;
                 text-align: center;
             }
            
            .navbar {
                padding: 16px 24px;
                align-items: center;
            }

            .nav-left {
                flex-direction: row;
                align-items: center;
                width: auto;
            }

            .hamburger {
                display: block;
            }

            .dropdown-menu {
                display: none;
                position: fixed; /* Changed to fixed positioning */
                top: 70px; /* Positioned below the navbar */
                left: 0; /* Start from left edge */
                right: 0; /* Extend to right edge */
                margin: 0 auto; /* Center horizontally */
                background-color: #fefdfc;
                flex-direction: column;
                align-items: center; /* Center content inside dropdown */
                padding: 16px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
                z-index: 1000;
                width: 80%; /* Control width of dropdown */
                max-width: 300px; /* Maximum width */
            }

            .dropdown-menu.active {
                display: flex;
            }

            .nav-links {
                display: flex;
                flex-direction: column;
                gap: 12px;
                align-items: center; /* Center the links */
                width: 100%;
            }

            .nav-links a {
                margin-right: 0;
                margin-bottom: 8px;
                text-align: center; /* Center text in links */
                width: 100%;
            }

            .nav-right {
                width: auto;
            }

            .nav-right .btn {
                width: 80%;
                text-align: center;
            }

            .test {
                padding: 40px 30px 60px;    
            }

            .test h1 {
                font-size: 36px;
                margin-bottom: 24px;
            }

            .test h3 {
                font-size: 18px;
                line-height: 1.4;
            }

            .test-buttons {
                flex-direction: column;
                align-items: center;
                gap: 16px;
                margin-top: 32px;
            }

            .test-buttons .btn {
                width: 100%;
                max-width: 300px;
                padding: 12px 16px;
            }

            .feature-row, .feature-row.reverse {
                flex-direction: column-reverse;
                margin-bottom: 60px;
            }

            .feature-row-3{
                flex-direction: column-reverse;
            }

            .feature-text, .feature-image {
                width: 100%;
                padding: 0 10px;
                margin-bottom: 20px;
            }

            .features-header h2 {
                font-size: 22px;
            }

            .feature-row.reverse {
            flex-direction: column-reverse;
        }

        }

        @media (max-width: 480px) {
            .test h1 {
                font-size: 24px;
            }

            .test h3 {
                font-size: 18px;
            }

            .test-buttons .btn {
                font-size: 14px;
                padding: 10px 16px;
            }

            .nav-left h3 {
                font-size: 18px;
            }

            .dropdown-menu {
                padding: 12px;
                width: 90%; /* Wider on very small screens */
            }

            .features-header h2 {
                font-size: 20px;
            }

            .features-header p {
                font-size: 16px;
            }

            .feature-card h3 {
                font-size: 20px;
            }

            .feature-card p {
                font-size: 14px;
            }

               .disclaimer{
                width: 100%;
                font-size: 12px;
             }
        }
    
    .disclaimer{
        margin: auto;
        padding-bottom: 20px;
        text-align: center;
        color: gray;
    }

    .disclaimer p{
        font-size: 12px;
        color:gray;
    }

    