:root {
    --primary-color: #c82a98;
    --secondary-color: #a530cc;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    line-height: 1.6;
}

.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    font-size: 1rem;
}

.hero-section {
    background: linear-gradient(135deg, rgba(200, 42, 152, 0.9) 0%, rgba(165, 48, 204, 0.9) 100%);
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-section h1 {
    font-size: 3.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
}

.cta-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn:hover {
    background-color: #a530cc; /* A slightly darker or complementary shade */
    border-color: #a530cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.product-intro-section .img-fluid {
    max-height: 400px;
    object-fit: contain;
}

.benefits-list li {
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--primary-color);
    min-width: 25px;
}

.feature-card {
    border: none;
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

.mid-cta-banner {
    background: linear-gradient(135deg, rgba(200, 42, 152, 0.95) 0%, rgba(165, 48, 204, 0.95) 100%);
    padding-top: 70px;
    padding-bottom: 70px;
}

#bonus-section {
    background-color: #f0f2f5;
}

.bonus-card {
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    flex-direction: column; /* Stack on mobile */
    text-align: center;
}

.bonus-card .bonus-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.bonus-card .bonus-label {
    background-color: #dc3545;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.bonus-card .value-badge {
    background-color: #28a745;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.bonus-card .bonus-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 10px;
}

.bonus-card .bonus-description {
    font-size: 1rem;
    color: #555;
}

.bonus-card .cta-strip {
    font-size: 1rem;
    padding: 8px 20px;
    margin-top: 15px;
    width: 100%;
}

.final-cta-section {
    background: linear-gradient(135deg, rgba(165, 48, 204, 0.95) 0%, rgba(200, 42, 152, 0.95) 100%);
    padding-top: 70px;
    padding-bottom: 70px;
}

.disclaimer-section .alert {
    background-color: #e2f3ff;
    border-left: 5px solid #007bff;
}

footer {
    background-color: #212529;
    color: #fff;
    padding: 40px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 4rem;
    }
    .cta-btn {
        min-width: 300px;
    }
    .bonus-card {
        flex-direction: row; /* Desktop layout for bonus cards */
        text-align: left;
    }
    .bonus-card .bonus-img {
        margin-bottom: 0;
        max-width: 150px;
    }
    .bonus-card .bonus-label {
        margin-bottom: 0;
    }
    .bonus-card .bonus-content {
        text-align: left;
    }
    .bonus-card .value-badge {
        margin-top: 0;
    }
    .bonus-card .cta-strip {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 12px 25px;
        width: 100%;
    }
    .bonus-card .bonus-img {
        max-width: 100%;
    }
    .bonus-card .bonus-title {
        font-size: 1.3rem;
    }
    .bonus-card .value-badge {
        width: 100%;
        margin-bottom: 10px;
    }
    .bonus-card .cta-strip {
        width: 100%;
    }
    .bonus-card .d-flex {
        flex-direction: column;
    }
}