* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #0088cc, #005580);
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 1.8em;
    font-weight: 500;
}

.packages {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.package-card.best-value {
    border: 3px solid #0088cc;
    transform: scale(1.02);
}

.package-card h3 {
    color: #0088cc;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.package-duration {
    color: #666;
    margin-bottom: 20px;
}

.product-image {
    margin: 20px 0;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 20px 0;
}

.dollar {
    font-size: 2em;
    font-weight: bold;
}

.amount {
    font-size: 4em;
    font-weight: bold;
    line-height: 1;
}

.per {
    font-size: 1em;
    color: #666;
    text-align: left;
    margin-left: 5px;
}

.savings {
    background: #ff6b6b;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin: 15px 0;
}

.bonus {
    background: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin: 15px 0;
}

.add-to-cart {
    background: #ffd700;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin: 20px 0;
}

.add-to-cart:hover {
    background: #ffcd00;
}

.guarantee {
    color: #666;
    margin: 15px 0;
}

.payment-methods {
    margin: 20px 0;
}

.payment-methods img {
    max-width: 200px;
}

.total {
    margin-top: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    color: #0088cc;
    font-weight: bold;
}

.shipping {
    color: #666;
    font-size: 0.9em;
}

.reviews {
    text-align: center;
    margin-top: 40px;
}

.review-text {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.rating {
    color: #0088cc;
    font-weight: bold;
}

.review-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review-btn,
.faq-btn {
    color: #0088cc;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #0088cc;
    border-radius: 20px;
    transition: all 0.3s;
}

.review-btn:hover,
.faq-btn:hover {
    background: #0088cc;
    color: white;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .header h2 {
        font-size: 1.5em;
    }

    .package-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .package-card.best-value {
        transform: none;
    }
}

/* Cookie Modal Styles */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-popup {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
    margin: 20px;
}

.cookie-content {
    text-align: center;
    margin-bottom: 20px;
}

.cookie-content h2 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
}

.cookie-content p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 120px;
}

.customize-btn {
    background: white;
    border: 2px solid #0088cc;
    color: #0088cc;
}

.reject-btn {
    background: white;
    border: 2px solid #0088cc;
    color: #0088cc;
}

.accept-btn {
    background: #0088cc;
    border: 2px solid #0088cc;
    color: white;
}

.customize-btn:hover,
.reject-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.accept-btn:hover {
    background: #006699;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-popup {
        margin: 15px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}