/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 80px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #004B87;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #28a745;
}

.buy-now-button {
    background: #28a745;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.buy-now-button:hover {
    background: #218838;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: #fff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5em;
    color: #FF6B35;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 {
    color: #004B87;
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 20px;
    text-transform: uppercase;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 20px;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
    filter: invert(47%) sepia(82%) saturate(401%) hue-rotate(86deg) brightness(96%) contrast(87%);
}

.feature-item p {
    font-size: 0.9em;
    color: #666;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.benefits h2 {
    color: #1a1a1a;
    font-size: 2em;
    margin-bottom: 20px;
}

.benefits h3 {
    color: #666;
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.pricing h2 {
    color: #1a1a1a;
    font-size: 2em;
    margin-bottom: 10px;
}

.pricing h3 {
    color: #666;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
}

.pricing-item.popular {
    border-color: #28a745;
    transform: scale(1.05);
}

.pricing-item h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5em;
    color: #28a745;
    font-weight: 700;
    margin-bottom: 20px;
}

.price span {
    font-size: 0.5em;
}

.save {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 20px;
}

.buy-button {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background: #218838;
}

/* Footer Styles */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.guarantee-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.guarantee-seal {
    width: 120px;
}

.payment-methods {
    text-align: center;
    margin-bottom: 40px;
}

.payment-methods img {
    max-width: 400px;
}

.footer-info {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #28a745;
}

.copyright {
    color: #666;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-item.popular {
        transform: none;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        display: none;
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-content h2 {
    color: #004B87;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cookie-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.customize {
    background: #fff;
    color: #004B87;
    border: 2px solid #004B87;
}

.cookie-btn.customize:hover {
    background: #004B87;
    color: #fff;
}

.cookie-btn.reject {
    background: #fff;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.cookie-btn.reject:hover {
    background: #FF6B35;
    color: #fff;
}

.cookie-btn.accept {
    background: #28a745;
    color: #fff;
    border: 2px solid #28a745;
}

.cookie-btn.accept:hover {
    background: #218838;
    border-color: #218838;
}