            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Segoe UI', Arial, sans-serif;
            }

            body {
                background-color: #f5f5f5;
                color: #333;
                line-height: 1.6;
            }

            .container {
                max-width: 1000px;
                margin: 0 auto;
                padding: 20px;
            }

            header {
                background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
                color: white;
                padding: 30px 0;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                text-align: center;
                margin-bottom: 30px;
            }

            .logo-container {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 15px;
            }

            .logo {
                height: 60px;
                margin-right: 15px;
            }

            h1 {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .subtitle {
                font-size: 18px;
                opacity: 0.9;
                max-width: 700px;
                margin: 0 auto;
            }

            .offer-card {
                background: white;
                border-radius: 15px;
                padding: 30px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
                margin-bottom: 30px;
                text-align: center;
            }

            .offer-icon {
                font-size: 50px;
                color: #d4af37;
                margin-bottom: 20px;
            }

            .offer-title {
                color: #2d5a2d;
                font-size: 26px;
                margin-bottom: 15px;
            }

            .offer-description {
                font-size: 17px;
                margin-bottom: 25px;
                color: #555;
            }

            .highlight {
                background-color: #fff9e6;
                border-left: 4px solid #d4af37;
                padding: 15px;
                margin: 20px 0;
                text-align: left;
                border-radius: 0 8px 8px 0;
            }

            .form-container {
                background: white;
                border-radius: 15px;
                padding: 30px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
                max-width: 500px;
                margin: 0 auto;
            }

            .form-title {
                color: #2d5a2d;
                font-size: 22px;
                margin-bottom: 25px;
                text-align: center;
            }

            .form-group {
                margin-bottom: 20px;
            }

            label {
                display: block;
                margin-bottom: 8px;
                font-weight: 600;
                color: #444;
            }

            input[type="email"],
            input[type="password"] {
                width: 100%;
                padding: 14px;
                border: 2px solid #ddd;
                border-radius: 8px;
                font-size: 16px;
                transition: border 0.3s;
            }

            input[type="email"]:focus,
            input[type="password"]:focus {
                border-color: #2d5a2d;
                outline: none;
            }

            .submit-btn {
                background: linear-gradient(to right, #2d5a2d, #3a7a3a);
                color: white;
                border: none;
                padding: 16px 30px;
                font-size: 18px;
                font-weight: 600;
                border-radius: 8px;
                cursor: pointer;
                width: 100%;
                transition: transform 0.2s, box-shadow 0.2s;
                margin-top: 10px;
            }

            .submit-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(45, 90, 45, 0.3);
            }

            .disclaimer {
                font-size: 13px;
                color: #777;
                text-align: center;
                margin-top: 20px;
                line-height: 1.5;
            }

            .countdown {
                background: #f0f7f0;
                border-radius: 10px;
                padding: 15px;
                text-align: center;
                margin-bottom: 25px;
                border: 1px dashed #2d5a2d;
            }

            .countdown-text {
                font-weight: 600;
                color: #2d5a2d;
                font-size: 16px;
            }

            footer {
                text-align: center;
                margin-top: 40px;
                padding: 20px;
                color: #666;
                font-size: 14px;
                border-top: 1px solid #eee;
            }

            .steps {
                display: flex;
                justify-content: space-around;
                flex-wrap: wrap;
                margin: 30px 0;
            }

            .step {
                text-align: center;
                flex: 1;
                min-width: 200px;
                margin: 10px;
                padding: 15px;
            }

            .step-number {
                background-color: #2d5a2d;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 15px;
                font-weight: bold;
                font-size: 20px;
            }

            @media (max-width: 768px) {
                .container {
                    padding: 10px;
                }

                h1 {
                    font-size: 24px;
                }

                .offer-card,
                .form-container {
                    padding: 20px;
                }

                .steps {
                    flex-direction: column;
                }
            }