 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #333;
        }
        header {
            text-align: center;
        }
        header img {
            max-width: 150px;
            height: auto;
			margin-top: 10px;
        }
        header h1 {
            font-size: 24px;
            color: #fff;
            margin-top: 10px;
        }
        footer {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 10px;
      
            bottom: 0;
            width: auto;
        }
        .container {
            max-width: 600px;
            margin: 17px auto;
            padding: 20px;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        label {
            font-weight: bold;
            margin-top: 10px;
            display: block;
        }
        input, select, button {
            width: 100%;
            padding: 7px;
            margin-top: 5px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            cursor: pointer;
            border: none;
        }
        button:hover {
            background-color: #45a049;
        }
        .message {
            display: none;
            padding: 15px;
            margin-top: 20px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: 5px;
        }
        .disclaimer {
            background-color: #fff3cd;
            color: #856404;
            padding: 10px;
            border: 1px solid #ffeeba;
            border-radius: 5px;
            margin-top: 20px;
            font-size: 14px;
        }
        .popup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            padding: 20px;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            text-align: center;
        }
        .popup h3 {
            margin: 0 0 15px;
            color: #333;
        }
        .popup p {
            margin: 5px 0;
            font-size: 14px;
            color: #555;
        }
        .popup .btn-whatsapp {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            font-size: 14px;
            border-radius: 5px;
        }
		
		.popup .btn-telegram {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #118eb3;
            color: white;
            text-decoration: none;
            font-size: 14px;
            border-radius: 5px;
        }
        .popup .btn-whatsapp:hover {
            background-color: #1bc154;
        }
        .popup button {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #f44336;
            color: white;
            border: none;
            font-size: 14px;
            border-radius: 5px;
            cursor: pointer;
        }
		
		.seo-section {
   
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.seo-section h1, .seo-section h2 {
    color: #333;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.6;
}

.seo-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 15px;
    }

    .seo-section h1 {
        font-size: 24px;
    }

    .seo-section h2 {
        font-size: 20px;
    }

    .seo-section p, .seo-section ul {
        font-size: 14px;
    }
}

        .popup button:hover {
            background-color: #d32f2f;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
		
		/* Icon Styles */
.btn-whatsapp, .btn-telegram {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1bc154;
}

.btn-telegram {
    background-color: #0088cc;
}

.btn-telegram:hover {
    background-color: #006fa6;
}

/* Icon Inside Buttons */
.btn-whatsapp i, .btn-telegram i {
    margin-right: 8px;
}

/* Responsiveness */
@media (max-width: 600px) {
    .btn-whatsapp, .btn-telegram {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Promotional Popup Styles */
.promo-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    animation: fadeIn 0.3s ease-in;
    padding: 15px;
}

.promo-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-popup {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.promo-badge {
    background: #fbbf24;
    color: #991b1b;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.promo-popup h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.promo-popup .offer-text {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.promo-price span {
    font-size: 24px;
}

.promo-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.promo-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-features li {
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.promo-features li i {
    color: #4ade80;
    margin-right: 10px;
    flex-shrink: 0;
}

.promo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.promo-cta, .promo-trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    flex: 1 1 auto;
    min-width: 160px;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
}

.promo-cta {
    background: white;
    color: #dc2626;
    border: none;
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #dc2626;
}

.promo-trial {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.promo-trial:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.promo-cta i, .promo-trial i {
    font-size: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Tablet Responsive Styles */
@media (max-width: 768px) {
    .promo-popup {
        padding: 35px 25px;
    }
    
    .promo-popup h2 {
        font-size: 24px;
    }
    
    .promo-popup .offer-text {
        font-size: 16px;
    }
    
    .promo-price {
        font-size: 42px;
    }
    
    .promo-price span {
        font-size: 22px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 600px) {
    .promo-overlay {
        padding: 10px;
    }
    
    .promo-popup {
        padding: 30px 20px;
        border-radius: 15px;
        max-height: 95vh;
    }
    
    .promo-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .promo-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .promo-popup h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .promo-popup .offer-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .promo-price {
        font-size: 36px;
        margin: 15px 0;
    }
    
    .promo-price span {
        font-size: 20px;
    }
    
    .promo-features {
        padding: 15px;
        margin: 15px 0;
    }
    
    .promo-features li {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .promo-features li i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .promo-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .promo-cta, .promo-trial {
        width: 100%;
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 14px 25px;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    .promo-cta i, .promo-trial i {
        font-size: 18px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 380px) {
    .promo-popup {
        padding: 25px 15px;
    }
    
    .promo-popup h2 {
        font-size: 20px;
    }
    
    .promo-popup .offer-text {
        font-size: 14px;
    }
    
    .promo-price {
        font-size: 32px;
    }
    
    .promo-price span {
        font-size: 18px;
    }
    
    .promo-features li {
        font-size: 13px;
    }
    
    .promo-cta, .promo-trial {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .promo-cta i, .promo-trial i {
        font-size: 16px;
    }
}

/* Smooth scrollbar for popup content */
.promo-popup::-webkit-scrollbar {
    width: 8px;
}

.promo-popup::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.promo-popup::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.promo-popup::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}