
        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f0f4f8;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background-color: #F3CF3B;
            color: black;
            padding: 40px 0;
            text-align: center;
        }

        header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        header p {
            font-size: 18px;
        }

        footer {
            background-color: #F3CF3B;
            color: black;
            padding: 20px 0;
            text-align: center;
        }

        /* Container */
        .container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .text-content {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .text-content img {
            max-width: 200px;
            max-height: 300px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .text-content-text {
            flex: 1;
        }

        .text-content-text h2 {
            font-size: 26px;
            margin-bottom: 20px;
            color: #333;
        }

        .text-content-text p {
            font-size: 18px;
            margin-bottom: 20px;
            color: #555;
        }

        .content h3 {
            font-size: 22px;
            margin-top: 30px;
            color: #333;
        }

        .content ul {
            margin-bottom: 30px;
            font-size: 16px;
            color: #444;
        }

        .content ul li {
            margin-bottom: 12px;
            list-style: none;
            position: relative;
            padding-left: 30px;
        }

        .content ul ul {
            padding-left: 20px; /* Indent for nested list */
        }

        .content ul li::before {
            content: url(check3.png);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 20px;
            color: #009688;
        }

        .limited-offer {
            color: #e74c3c;
            font-size: 20px;
            font-weight: bold;
            margin-top: 20px;
        }

        .discount {
            color: #27ae60;
            font-weight: bold;
            font-size: 24px;
        }

        /* CTA Section */
        .cta-section {
            background-color: #FDFBDD;
            text-align: center;
            padding: 20px;
			border: 2px solid #ECD213;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            margin: 20px auto;
			
        }
		
		
		.cta-section img {
			width:100%;
			height: auto;
			border: 0;
		}

        .progress-bar {
            background: #444;
            height: 20px;
            border-radius: 10px;
            position: relative;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .progress-bar .progress {
            height: 100%;
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            background: repeating-linear-gradient(
                -40deg,
                #2bc253, 
                #2bc253 10%, 
                #54f054 20%, 
                #54f054 30%
            );
            background-size: 40px 100%;
            animation: movePattern 2s linear infinite;
        }

        @keyframes movePattern {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 50px 50px;
            }
        }

        .progress-bar span {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            line-height: 20px;
        }

        .cta-content h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 10px 0;
            line-height: 1.4;
        }

        .cta-content p {
            font-size: 1rem;
            margin: 10px 0 20px;
        }

        .cta-section .cta-button {
            background: linear-gradient(to bottom, #ff7f00, #ff4500);
            font-size: 1rem;
            font-weight: bold;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .cta-section .cta-button:hover {
            background: linear-gradient(to bottom, #ff4500, #ff7f00);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .text-content {
                flex-direction: column;
                text-align: center;
            }

            .text-content img {
                max-width: 100%;
            }

            .cta-button {
                font-size: 18px;
                padding: 15px 30px;
            }

            .cta-section {
                max-width: 90%;
                margin: 20px auto;
            }

            .progress-bar span {
                font-size: 14px;
            }
        }
