/* Global Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --success-color: #2ecc71;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.strike {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 5px;
}

/* Updated Top Bar Styles */
.top-bar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 20px; /* Increased margin for better spacing */
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 700; /* Made bolder (700 is bold) */
    font-size: 1.1rem; /* Increased font size */
    transition: color 0.3s;
    text-transform: uppercase; /* Optional: makes text uppercase */
    letter-spacing: 0.5px; /* Optional: adds slight letter spacing */
}

.main-nav a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white; /* White text by default */
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    margin-left: 20px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color); /* Added border for hover effect */
}

.nav-cta:hover {
    background-color: white; /* White background on hover */
    color: black; /* Black text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white; /* White text by default */
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid var(--primary-color); /* Added border for hover effect */
}

.cta-button:hover {
    background-color: white; /* White background on hover */
    color: black; /* Black text on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    border-color: var(--primary-color); /* Keep border color on hover */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav-cta {
        color: white; /* Ensure white text in mobile */
    }
    
    .nav-cta:hover {
        color: black; /* Black text on hover in mobile */
    }
}

/* Mobile menu button - hidden by default */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem; /* Larger menu icon */
    cursor: pointer;
    color: var(--dark-color);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        margin: 0;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav li {
        margin: 15px 0; /* Increased vertical spacing */
    }
    
    .main-nav a {
        font-size: 1.2rem; /* Even larger for mobile */
    }
    
    .nav-cta {
        margin: 30px 0 0;
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--dark-color), #1a2530);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header-title {
    margin-bottom: 40px;
}

header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header h2 {
    color: var(--light-color);
    font-weight: 300;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-image {
    flex: 1;
}

.header-intro {
    flex: 1;
    text-align: left;
}

.product-image {
    width: 100%;
    max-width: 560px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.intro {
    margin-bottom: 30px;
    color: var(--light-color);
    line-height: 1.7;
}

.cta-banner {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .header-image, .header-intro {
        flex: none;
        width: 100%;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
    
    header h2 {
        font-size: 1.2rem;
    }
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.cta-button i {
    margin-left: 8px;
}

/* Main Content Styles */
main {
    padding: 40px 0;
    background-color: white;
}

section {
    margin-bottom: 40px;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-cta {
    text-align: center;
    margin: 60px 0;
}

.video-placeholder {
    background-color: var(--dark-color);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 30px;
}

.video-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder i:hover {
    transform: scale(1.1);
    color: white;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Image CTA Section Styles */
.image-cta {
    text-align: center;
    margin: 60px 0;
}

.image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-preview-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover .product-preview-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.play-button span {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.play-button:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .play-button i {
        font-size: 4rem;
    }
    
    .play-button span {
        font-size: 1rem;
    }
}

/* Feature List Styles */
.feature-list {
    list-style-type: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 4px 4px 0;
}

/* Testimonials Section Styles */
.testimonials {
    margin: 80px 0;
    text-align: center;
}

.testimonial-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 12px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.customer-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.customer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-right: 15px;
}

.customer-info {
    text-align: left;
}

.author {
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 1.8rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.rating {
    color: #FFD700;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-card {
        max-width: 100%;
    }
    
    .testimonial-cards-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Overall Rating Styles */
.overall-rating {
    margin: 20px auto 30px;
    text-align: center;
}

.stars {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.stars span {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-left: 10px;
    font-weight: bold;
}

.rating-count {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 5px;
}

/* Individual Rating Styles */
.rating {
    color: #FFD700;
    font-size: 1.1rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-text {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 5px;
}

.author {
    font-weight: bold;
    text-align: right;
    margin-top: 15px;
    color: var(--dark-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 40px auto 0;
    max-width: 800px;
}

.cta-box h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Creator Section Styles */
.creator-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.creator-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.creator-image {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.creator-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.creator-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.creator-badge span {
    display: block;
    font-weight: bold;
    line-height: 1.4;
}

.creator-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.creator-text p {
    margin-bottom: 20px;
}

/* Science Section Styles */
.science-section {
    padding: 60px 0;
    background-color: white;
}

.science-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 20px auto 40px;
}

.science-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.science-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #f5f7fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.science-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.science-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.science-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.science-conclusion {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Benefits Section Styles */
.benefits-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.benefits-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 20px auto 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefits-conclusion {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .creator-content {
        flex-direction: column;
    }
    
    .creator-image {
        max-width: 100%;
    }
    
    .science-card {
        min-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Bonus List Styles */
.bonus-list {
    list-style-type: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.bonus-list li {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid var(--success-color);
}

/* Guarantee Styles */
.guarantee {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 60px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-badge {
    background-color: var(--success-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-right: 30px;
    min-width: 150px;
    margin-bottom: 20px;
}

.guarantee-badge i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guarantee-badge span {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
}

.guarantee-text {
    flex: 1;
    min-width: 300px;
}

/* Pricing Styles */
.pricing {
    text-align: center;
    margin: 60px 0;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    text-align: center;
}

.price {
    margin: 25px 0;
}

.current-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.package-features {
    list-style-type: none;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.secure-checkout {
    margin-top: 25px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-checkout i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Pros and Cons Section Styles */
.pros-cons-section {
    padding: 60px 0;
    background-color: white;
}

.pros-cons-container {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.pros-box, .cons-box {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pros-box {
    background-color: #f5faf6;
    border-top: 4px solid var(--success-color);
}

.cons-box {
    background-color: #fff5f5;
    border-top: 4px solid var(--primary-color);
}

.pros-cons-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pros-cons-header i {
    font-size: 1.8rem;
    margin-right: 15px;
}

.pros-box .pros-cons-header i {
    color: var(--success-color);
}

.cons-box .pros-cons-header i {
    color: var(--primary-color);
}

.pros-cons-header h4 {
    margin: 0;
    font-size: 1.4rem;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.pros-list i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
}

.cons-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.guarantee-note {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.guarantee-note strong {
    color: var(--primary-color);
}

/* How To Use Section Styles */
.how-to-use-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.how-to-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 20px auto 40px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: var(--dark-color);
}

.steps-conclusion {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pros-cons-container {
        flex-direction: column;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}

/* FAQ Styles */
.faq {
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

/* Secure Checkout Section */
.secure-checkout-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    margin: 50px 0;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    background: #f1f8ff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.guarantee-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.checkout-image {
    margin: 30px 0;
    position: relative;
}

.checkout-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.payment-methods img {
    height: 55px;
    width: auto;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all 0.3s;
}

.payment-methods img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.checkout-button {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 30px auto;
    max-width: 500px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.button-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.button-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 0.9;
    display: block;
}

.checkout-button i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
}

.secure-note i {
    color: var(--success-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-content {
        padding: 30px 20px;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .checkout-button {
        padding: 18px 15px;
    }
    
    .button-text {
        font-size: 1rem;
        text-align: left;
        padding-right: 30px;
    }
    
    .button-subtext {
        font-size: 0.8rem;
        text-align: left;
        padding-right: 30px;
    }
}

/* Final CTA Styles */
.final-cta {
    text-align: center;
    margin: 60px 0;
}

.final-cta .cta-banner {
    margin-top: 30px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.footer-links a {
    color: var(--light-color);
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .nav-cta {
        margin: 25px 0 0;
        display: block;
        text-align: center;
        padding: 12px 25px;
    }

    .mobile-menu-btn {
        display: block;
    }

    header h1 {
        font-size: 2.2rem;
    }
    
    header h2 {
        font-size: 1.4rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .guarantee-badge {
        margin-right: 0;
        margin-bottom: 25px;
        width: 100%;
    }
    
    .footer-links a {
        margin: 0 10px 10px;
    }

    .bonus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .video-placeholder i {
        font-size: 4rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    header {
        padding: 40px 0 30px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header h2 {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .guarantee {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}