/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-size: 18px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

p {
    margin-bottom: 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #106EBE;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #106EBE;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0a4b8a;
}

.btn-buy {
    background-color: #0FFCBE; /* Mint color for button */
    color: #106EBE; /* Blue text on mint background */
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-buy:hover {
    background-color: transparent;
    color: #0FFCBE; /* Mint text on hover */
    border-color: #0FFCBE; /* Mint border on hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #106EBE 0%, #0a4b8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 0;
}

/* Two Column Sections */
.two-column {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #106EBE;
}

.columns {
    display: flex;
    gap: 40px;
    align-items: center;
}

.column {
    flex: 1;
}

.image-column img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-column {
    display: flex;
    flex-direction: column;
}

/* Single Column Sections */
.single-column {
    padding: 60px 0;
    background-color: white;
}

.single-column:nth-child(odd) {
    background-color: #f0f4f8;
}

.single-column p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 20px;
}

/* Table Styles */
table {
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #106EBE;
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e6f0fa;
}

/* List Styles */
ul, ol {
    max-width: 800px;
    margin: 20px auto;
    padding-left: 40px;
}

li {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Testimonial Styles */
.overall-rating {
    text-align: center;
    margin-bottom: 40px;
}

.overall-rating .stars {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 10px;
}

.overall-rating .stars span {
    font-size: 20px;
    color: #106EBE;
    margin-left: 10px;
    vertical-align: middle;
}

.overall-rating p {
    font-size: 16px;
    color: #666;
}

.testimonials-container {
    width: 100%;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 9px;
    border: 3px solid #0FFCBE;
}

.reviewer-info {
    flex: 1;
}

.author {
    font-weight: 600;
    color: #106EBE;
    margin-bottom: 5px;
}

.profession {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
    font-size: 21px;
    text-align: center;
}

.rating span {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.quote {
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #0FFCBE;
    flex-grow: 1;
}

.testimonial-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Mega CTA Section */
.mega-cta {
    background: linear-gradient(135deg, #106EBE 0%, #0a4b8a 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.mega-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.mega-cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: white;
}

.mega-cta h2 span {
    color: #0FFCBE;
    display: block;
}

.mega-cta-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.highlight-icon {
    background-color: #0FFCBE;
    color: #106EBE;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    position: relative;
}

.original-price {
    font-size: 28px;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 52px;
    font-weight: 800;
    color: #0FFCBE;
}

.discount-badge {
    background-color: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    right: -20px;
    top: -15px;
    transform: rotate(15deg);
    animation: pulse 2s infinite;
}

.mega-cta-button {
    display: block;
    background-color: #0FFCBE;
    color: #106EBE;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    transition: all 0.3s ease;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mega-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.mega-cta-button .main-text {
    display: block;
    margin-bottom: 5px;
}

.mega-cta-button .sub-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.guarantee-badge1 {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.guarantee-badge1 img {
    width: 30px;
    height: 30px;
}

.guarantee-badge1 p {
    font-size: 16px;
    opacity: 0.9;
}

@keyframes pulse {
    0% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.05); }
    100% { transform: rotate(15deg) scale(1); }
}

@media (max-width: 768px) {
    .mega-cta h2 {
        font-size: 32px;
    }
    
    .mega-cta-highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .current-price {
        font-size: 42px;
    }
    
    .mega-cta-button {
        padding: 20px;
        font-size: 20px;
    }
}

/* Science-Backed CTA Section */
.science-cta {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.science-cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
}

.science-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.science-cta h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.3;
}

.highlight {
    color: #106EBE;
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.proof-card {
    background: white;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.proof-card:hover {
    transform: translateY(-10px);
}

.proof-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.proof-card h3 {
    color: #106EBE;
    margin-bottom: 15px;
    font-size: 22px;
}

.proof-card p {
    color: #666;
    font-size: 16px;
}

.cta-box {
    background: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.limited {
    color: #0FFCBE;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.pricing {
    margin: 20px 0;
}

.old-price {
    font-size: 28px;
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
}

.new-price {
    font-size: 52px;
    font-weight: 800;
    color: #106EBE;
}

.bonus {
    color: #106EBE;
    font-weight: 600;
    font-size: 18px;
}

.science-cta-btn {
    display: block;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s;
}

.science-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 110, 190, 0.3);
}

.btn-main {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.btn-sub {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge img {
    width: 20px;
    height: 20px;
}

.badge span {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .proof-points {
        grid-template-columns: 1fr;
    }
    
    .science-cta h2 {
        font-size: 32px;
    }
    
    .new-price {
        font-size: 42px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Start Now CTA Section */
.start-now-cta {
    background: linear-gradient(to bottom, #ffffff 0%, #f7fafc 100%);
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.start-now-content {
    max-width: 1200px;
    margin: 0 auto;
}

.header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.start-now-cta h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.start-now-cta h2 span {
    color: #106EBE;
}

.subhead {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.cta-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefits-col {
    padding: 20px;
}

.benefits-col h3 {
    color: #106EBE;
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 15px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefits-list li:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #4a5568;
    font-size: 16px;
}

.offer-col {
    position: relative;
}

.offer-box {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(16, 110, 190, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 20px;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #a0aec0;
}

.new-price {
    font-size: 48px;
    font-weight: 800;
    color: #106EBE;
}

.discount-badge {
    background: #0FFCBE;
    color: #106EBE;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 18px;
}

.timer-wrapper {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.timer-text {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 10px;
}

.countdown-timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #106EBE;
}

.start-now-btn {
    display: block;
    background: linear-gradient(to right, #106EBE, #0FFCBE);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-bottom: 25px;
}

.start-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 110, 190, 0.3);
}

.btn-main {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
}

.btn-sub {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
}

.guarantee img {
    width: 20px;
    height: 20px;
}

@media (max-width: 900px) {
    .cta-columns {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        position: static;
    }
    
    .start-now-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .start-now-cta h2 {
        font-size: 30px;
    }
    
    .price-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .benefits-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
}

/* Timer Styles */
.timer-wrapper {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.timer-text {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown-timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #106EBE;
    letter-spacing: 1px;
}

.countdown-timer span {
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

/* CTA Buttons */
.btn-cta {
    display: inline-block;
    background-color: #0FFCBE;
    color: #106EBE;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    transition: background-color 0.3s;
    align-self: center;
}

.btn-cta:hover {
    background-color: #106EBE;
    color: #0FFCBE;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #106EBE;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #106EBE;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f7fafc;
}

.toggle-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 25px;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 1000px;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.benefit-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.benefit-box h4 {
    color: #106EBE;
    margin-bottom: 8px;
}

.cta-inline {
    color: #0FFCBE;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #106EBE;
    color: white;
}

.comparison-table tr:nth-child(even) {
    background: #f8fafc;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #4a5568;
}

.guarantee-badge img {
    width: 20px;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* Purchase Steps Section */
.purchase-steps {
    padding: 80px 0;
    background-color: #f8fafc;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 0px 0;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background-color: #106EBE;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #106EBE;
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.checkout-preview {
    max-width: 800px;
    margin: 60px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.checkout-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.checkout-image {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.checkout-preview:hover .checkout-image {
    transform: scale(1.02);
}

.checkout-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.secure-badge {
    background-color: #0FFCBE;
    color: #106EBE;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
}

/* Updated Purchase Steps */
.purchase-steps .steps-container {
    margin-bottom: 40px;
}

.purchase-steps .step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.purchase-steps .step-number {
    background-color: #106EBE;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 5px;
}

.purchase-steps .step-content h3 {
    color: #106EBE;
    font-size: 20px;
    margin-bottom: 8px;
}

.purchase-steps .step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 16px;
}

/* Checkout Preview Styles */
.checkout-preview {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.checkout-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.checkout-image:hover {
    transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .purchase-steps .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .purchase-steps .step-number {
        margin-top: 0;
    }
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #106EBE 0%, #0a4b8a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.urgency-banner {
    background-color: #ff4757;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtext {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 200px;
}

.benefit-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #0FFCBE;
    color: #106EBE;
    padding: 25px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin: 30px 0;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-main {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.btn-sub {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.payment-methods img {
    height: 71px;
    width: auto;
    opacity: 0.8;
}

.guaranteee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.guaranteee img {
    width: 25px;
    height: 25px;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .benefits-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-cta-large {
        padding: 20px 30px;
    }
    
    .btn-main {
        font-size: 20px;
    }
}

/* Footer Styles */
footer {
    background-color: #2a4365;
    color: white;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0FFCBE;
}

.affiliate-disclosure {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.affiliate-disclosure p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.affiliate-disclosure strong {
    color: #0FFCBE;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 15px;
    }
    
    .affiliate-disclosure {
        padding: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    nav ul {
        display: none;
    }
    
    .btn-buy {
        margin-left: auto;
    }
    
    .testimonial {
        min-width: 100%;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}
/* Privacy Policy Specific Styles */
.privacy-policy {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-content h2 {
    color: #106EBE;
    margin: 30px 0 15px;
    font-size: 22px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-cta {
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    color: #106EBE;
    font-weight: 500;
}

address {
    font-style: normal;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 20px;
    }
}

/* Terms of Use Specific Styles */
.terms-of-use {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.terms-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.terms-content h2 {
    color: #106EBE;
    margin: 30px 0 15px;
    font-size: 22px;
}

.terms-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 8px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.terms-cta {
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    color: #106EBE;
    font-weight: 500;
}

address {
    font-style: normal;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 20px;
    }
}

/* Affiliate Disclaimer Specific Styles */
.affiliate-disclaimer {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.disclaimer-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.disclaimer-content h2 {
    color: #106EBE;
    margin: 30px 0 15px;
    font-size: 22px;
}

.disclaimer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.disclaimer-content li {
    margin-bottom: 8px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.disclaimer-cta {
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    color: #106EBE;
    font-weight: 500;
}

address {
    font-style: normal;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .disclaimer-content {
        padding: 20px;
    }
}

/* CTA Button Styles */
.explore-button {
    display: inline-block;
    background: linear-gradient(to right, #106EBE, #0FFCBE);
    color: white;
    text-align: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 110, 190, 0.3);
    border: none;
    cursor: pointer;
}

.explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 110, 190, 0.4);
    background: linear-gradient(to right, #0a4b8a, #0ad8b2);
}

.disclaimer-cta {
    text-align: center;
    margin-top: 40px;
}

.disclaimer-cta p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .explore-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}


/* Additional Styles for New TGW Audio Program Sections */
.intro-section {
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.6;
}

.dark-bg {
    background-color: #2a4365;
    color: white;
}

.dark-bg p {
    color: rgba(255,255,255,0.9);
}

.benefits-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #106EBE;
    margin-bottom: 10px;
}

.two-column.reverse .columns {
    flex-direction: row-reverse;
}

.testimonials-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-content {
    padding: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: 10px;
    left: 15px;
    color: rgba(16, 110, 190, 0.1);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.author-img {
    font-size: 30px;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0;
    color: #106EBE;
}

.author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .two-column.reverse .columns {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section with Product Image */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.product-image {
    max-width: 300px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .product-image {
        max-width: 200px;
    }
}

/* Timer Fix */
.countdown-timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #106EBE;
    letter-spacing: 1px;
}

.countdown-timer span {
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

/* Dr Rivers Brain Wave CSS */

.section-cta {
    margin-top: 30px;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(to right, #106EBE, #0FFCBE);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 110, 190, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 110, 190, 0.4);
    background: linear-gradient(to right, #0a4b8a, #0ad8b2);
}

.cta-subtext {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .btn-cta {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Large CTA Section Styles */
.cta-section.dark-bg {
    background: linear-gradient(135deg, #0a4b8a 0%, #106EBE 100%);
    color: white;
    padding: 60px 0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 28px;
}

.cta-action {
    background: white;
    padding: 30px;
    border-radius: 10px;
    min-width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.price-display {
    margin-bottom: 25px;
    position: relative;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    font-size: 42px;
    font-weight: 800;
    color: #106EBE;
}

.discount {
    position: absolute;
    top: -15px;
    right: 0;
    background: #0FFCBE;
    color: #106EBE;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.cta-button {
    display: block;
    background: linear-gradient(to right, #0FFCBE, #0ad8b2);
    color: #106EBE;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin: 25px 0;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.button-main {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
}

.button-sub {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 20px;
}

.security-badges img {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .cta-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-action {
        min-width: 100%;
    }
    
    .cta-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 26px;
    }
}
    
/* Product Image in CTA */
.product-image-cta {
    width: 541px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /*border: 3px solid #0FFCBE;*/
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-image-cta {
        width: 140px;
    }
}