/* Global Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --pale-green: #f0f4f2;
    --primary-green: #10a94f;
    --secondary-green: #3fa02e;
    --price-yellow: #c3ea69;
    --bonus-yellow: #f7f67c;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-green);
    margin: 15px auto;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    border: 2px solid var(--secondary-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-light {
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
}

.btn-light:hover {
    background: rgba(255,255,255,0.9);
}

.btn-xl {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Navigation Styles */
.navbar {
    background-color: var(--black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
}

.navbar-brand span:first-child {
    color: var(--primary-green);
}

.navbar-brand span:last-child {
    color: var(--white);
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-green);
    border: 2px solid var(--secondary-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 0;
        display: block;
    }
    
    .nav-cta {
        margin: 20px 0 0;
        width: 100%;
    }
    
    .navbar-toggler {
        display: block;
    }
}

/* Navbar Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Adjust text spacing when logo is present */
.navbar-brand span:first-child {
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-logo {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px;
    }
    
    .navbar-collapse.show .navbar-logo {
        display: none; /* Hide logo in mobile menu */
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Simplified Traffic Section */
.simplified-traffic {
    padding: 80px 0;
    background-color: var(--white);
}

.simplified-traffic .container {
    max-width: 1200px;
}

.simplified-traffic .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.simplified-traffic .col-image,
.simplified-traffic .col-content {
    flex: 1;
    min-width: 300px;
}

.product-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.simplified-traffic .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.simplified-traffic .section-title:after {
    margin: 15px 0;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-wrapper {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .simplified-traffic .row {
        flex-direction: column;
    }
    
    .simplified-traffic .col-image,
    .simplified-traffic .col-content {
        flex: 100%;
    }
    
    .simplified-traffic .section-title {
        text-align: center;
    }
    
    .simplified-traffic .section-title:after {
        margin: 15px auto;
    }
}

/* Highlighted Title Section */
.highlighted-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
}

.highlighted-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
}

.highlighted-title span {
    display: block;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 10px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.why-choose .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}


.why-choose .col-image,
.why-choose .col-content {
    flex: 1;
    min-width: 300px;
}

.why-choose .content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlighted-title {
        font-size: 1.8rem;
    }
    
    .highlighted-title span {
        font-size: 1.4rem;
    }
    
    .why-choose .row.reversed {
        flex-direction: column;
    }
    
    .why-choose .col-image,
    .why-choose .col-content {
        flex: 100%;
    }
}

/* #1 Solution Section - Single Column */
.solution-single-column {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.solution-image {
    margin-bottom: 40px;
}

.solution-image img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.solution-text {
    text-align: left;
    margin-bottom: 40px;
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.solution-feature i {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 3px;
}

.solution-feature h3 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-highlight {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.value-item {
    background: var(--pale-green);
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    min-width: 250px;
}

.value-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.value-desc {
    font-weight: 600;
    margin-top: 8px;
}

.solution-cta {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solution-feature {
        flex-direction: column;
        gap: 10px;
    }
    
    .value-item {
        flex: 100%;
    }
}

/* What Is Traffic Genius Section */
.what-is-section {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-content {
    text-align: left;
    margin-bottom: 40px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.benefit-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
    background: rgba(16, 169, 79, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.benefit-box i {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-top: 5px;
}

.benefit-box h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.value-card {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 250px;
    border-top: 4px solid var(--primary-green);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.value-title {
    font-weight: 600;
    margin-top: 8px;
    font-size: 1.1rem;
}

.section-cta {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .value-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .value-card {
        width: 100%;
    }
}

/* Secure Checkout Styles */
.secure-checkout {
    margin-top: 30px;
    text-align: center;
}

.secure-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.secure-icons img {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.secure-icons img:hover {
    opacity: 1;
}

.secure-text {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 169, 79, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
}

.secure-text i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .secure-icons {
        gap: 10px;
    }
    
    .secure-icons img {
        height: 20px;
    }
    
    .secure-text {
        font-size: 0.8rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.process-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(16, 169, 79, 0.1);
    line-height: 1;
}

.step-content h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.system-benefits {
    background: var(--pale-green);
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-highlight:last-child {
    margin-bottom: 0;
}

.benefit-highlight i {
    color: var(--primary-green);
    font-size: 2rem;
    min-width: 50px;
}

.benefit-highlight h3 {
    color: var(--black);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.benefit-highlight p span {
    font-weight: 700;
    color: var(--primary-green);
}

.system-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefit-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-highlight i {
        margin-bottom: 15px;
    }
}

/* Science Behind Section */
.science-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
}

.science-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.science-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.principle-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.principle-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.science-bonus {
    background: rgba(16, 169, 79, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-green);
}

.bonus-value {
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.science-bonus h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.science-proof {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.proof-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.proof-point i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.science-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .science-principles {
        grid-template-columns: 1fr;
    }
    
    .science-intro p {
        text-align: left;
    }
}

/* What's Inside Section */
.package-section {
    padding: 80px 0;
    background-color: var(--white);
}

.package-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.package-intro h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.package-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.package-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-header i {
    font-size: 1.8rem;
}

.package-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.package-header span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.package-content {
    padding: 25px;
    background: white;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.package-content strong {
    color: var(--black);
}

/* Secure Checkout Badge Styles */
.secure-checkout-badge {
    margin-top: 25px;
    text-align: center;
}

.checkout-badge-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #555;
    margin-top: 10px;
}

.payment-icons i {
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-green);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .checkout-badge-img {
        max-width: 250px;
    }
    
    .payment-icons {
        font-size: 1.5rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .checkout-badge-img {
        max-width: 200px;
    }
    
    .payment-icons {
        font-size: 1.3rem;
    }
}

/* Category Colors */
.coaching .package-header { background: #4a6fdc; }
.creator .package-header { background: #d84a7a; }
.tools .package-header { background: #8e44ad; }
.community .package-header { background: #16a085; }
.priority .package-header { background: #e67e22; }

.package-total {
    text-align: center;
    background: var(--pale-green);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.total-value {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.total-value span {
    color: #555;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.today-price {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.today-price span {
    color: var(--primary-green);
    font-weight: 800;
}

/* Image Container Styling */
.component-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.component-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-height: 300px; /* Controls image height */
    object-fit: contain; /* Ensures images aren't stretched */
}

.component-photo:hover {
    transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .component-grid {
        grid-template-columns: 1fr;
    }
    .component-image {
        padding: 15px;
        max-height: 250px;
    }
    .component-photo {
        max-height: 200px;
    }
}

/* Package Component Grid Layout */
.package-component {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.component-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.component-image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.component-image img:hover {
    transform: scale(1.02);
}

.component-content {
    padding: 25px;
}


/* Guarantee Badge */
.guarantee-badge1 {
    background: rgba(16, 169, 79, 0.1);
    color: #10a94f;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .package-components {
        grid-template-columns: 1fr;
    }
    
    .total-value {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-green);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-content-wrapper {
    display: flex;
    gap: 20px;
}

.testimonial-image {
    flex-shrink: 0;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    margin-bottom: 10px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-author h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.testimonial-author p {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-quote {
    position: relative;
    margin: 15px 0;
}

.testimonial-quote i {
    color: var(--primary-green);
    opacity: 0.3;
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: -5px;
}

.testimonial-quote p {
    padding-left: 25px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(16, 169, 79, 0.1);
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #555;
    margin-top: 5px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.testimonial-rating i {
    color: var(--price-yellow);
    font-size: 0.9rem;
    margin-right: 3px;
}

.testimonial-rating span {
    font-size: 0.8rem;
    margin-left: 5px;
    color: #777;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 50px 0;
    padding: 30px;
    background: var(--pale-green);
    border-radius: 10px;
}

.overall-rating {
    text-align: center;
    min-width: 200px;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: var(--price-yellow);
    font-size: 1.8rem;
    margin: 0 2px;
}

.rating-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.rating-total {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 5px;
}

.rating-count {
    font-size: 0.9rem;
    color: #555;
}

.rating-distribution {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 60px;
    font-size: 0.9rem;
    color: #555;
}

.rating-track {
    flex: 1;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 0 10px;
    overflow: hidden;
}

.rating-progress {
    height: 100%;
    background: var(--price-yellow);
    border-radius: 5px;
}

.rating-percent {
    width: 40px;
    font-size: 0.9rem;
    color: #555;
    text-align: right;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content-wrapper {
        flex-direction: column;
    }
    
    .testimonial-image {
        margin-bottom: 20px;
    }
    
    .testimonial-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .rating-distribution {
        width: 100%;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top: 5px solid var(--primary-green);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card h3 span {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Guarantee Section */
/*.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guarantee-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    height: 100%;
    border-left: 5px solid var(--primary-green);
    text-align: center;
}

.guarantee-badge {
    display: inline-block;
    background: var(--price-yellow);
    color: var(--black);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.guarantee-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 3px solid var(--primary-green);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--price-yellow);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #777;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-green);
}

*/

/* Creator Section */
.creator-section {
    padding: 80px 0;
    background-color: var(--white);
}

.creator-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.creator-image, .creator-content {
    flex: 1;
    min-width: 300px;
}

.creator-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.creator-content h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.creator-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

.creator-bio p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.creator-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.creator-stats .stat-item {
    background: var(--pale-green);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    flex: 1;
}

.creator-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.creator-stats .stat-label {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}

.creator-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.creator-cta {
    margin-top: 40px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .creator-row {
        flex-direction: column;
    }
    
    .creator-image, .creator-content {
        flex: 100%;
    }
    
    .creator-stats {
        flex-direction: column;
    }
    
    .creator-stats .stat-item {
        width: 100%;
    }
}

/* Key Features Section */
.key-features-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-green);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.features-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-green);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: var(--pale-green);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefit-stats {
    margin-top: 20px;
}

.benefit-stats .stat-item {
    display: inline-block;
    background: rgba(16, 169, 79, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
}

.benefit-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.benefit-stats .stat-label {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* How To Use Section */
.how-to-use-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px 0;
}

.step-card {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    background: var(--primary-green);
}

.step-content {
    padding: 30px;
    flex: 1;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.step-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
}

.step-time i {
    font-size: 1rem;
}

.results-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.results-content {
    flex: 1;
    min-width: 300px;
}

.results-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.results-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.results-image {
    flex: 1;
    min-width: 300px;
}

.results-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.how-to-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        min-width: 100%;
        padding: 15px 0;
    }
    
    .results-highlight {
        flex-direction: column;
        padding: 30px;
    }
    
    .results-content, .results-image {
        flex: 100%;
    }
}

/* Official Purchase Section */
.official-purchase-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-green);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 169, 79, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-green);
}

.benefit-badge i {
    font-size: 1rem;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff8e6;
    border-left: 5px solid var(--price-yellow);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-icon {
    font-size: 2rem;
    color: var(--price-yellow);
    flex-shrink: 0;
}

.warning-content h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.warning-content p {
    color: #666;
    line-height: 1.6;
}

.official-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-icon {
        margin-bottom: 15px;
    }
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.bonus-block {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.bonus-image, .bonus-content {
    flex: 1;
    min-width: 300px;
}

.bonus-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    padding: 30px;
}

.bonus-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.bonus-number {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bonus-content h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 5px;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bonus-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.bonus-features i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-green);
}

.bonus-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-value i {
    font-size: 1.3rem;
}

.bonuses-total {
    text-align: center;
    background: var(--pale-green);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 50px auto 0;
}

.total-value {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.total-value span {
    color: #555;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.today-price {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.today-price span {
    color: var(--primary-green);
    font-weight: 800;
}

.bonuses-cta {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bonus-block {
        flex-direction: column;
    }
    
    .bonus-image {
        height: 250px;
    }
    
    .total-value {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: var(--light-gray);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--pale-green);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: var(--primary-green);
    color: white;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.7;
    color: #555;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-answer.show {
        padding: 20px;
    }
}


/* Guarantee Section Styling */
.highlighted-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.highlighted-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.guarantee-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.guarantee-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.guarantee-intro h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 15px;
}

.guarantee-intro p {
    font-size: 1.1rem;
    color: #555;
}

.guarantee-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.guarantee-column {
    display: flex;
    flex-direction: column;
}

.guarantee-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid;
    transition: transform 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
}

.guarantee-card.money-back {
    border-color: var(--primary-green);
}

.guarantee-card.traffic {
    border-color: #4a6fdc;
}

.guarantee-header {
    padding: 30px;
    text-align: center;
    color: white;
}

.guarantee-card.money-back .guarantee-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.guarantee-card.traffic .guarantee-header {
    background: linear-gradient(135deg, #4a6fdc 0%, #3a56b7 100%);
}

.guarantee-badge {
    display: block;
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.5);
}

.guarantee-header h3 {
    font-size: 1.6rem;
    margin: 0;
}

.guarantee-content {
    padding: 30px;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.guarantee-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.guarantee-features li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-features i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.2rem;
}

.guarantee-card.money-back .guarantee-features i {
    color: var(--primary-green);
}

.guarantee-card.traffic .guarantee-features i {
    color: #4a6fdc;
}

.guarantee-note {
    background: rgba(16, 169, 79, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.guarantee-card.money-back .guarantee-note {
    color: var(--primary-green);
}

.guarantee-card.traffic .guarantee-note {
    background: rgba(74, 111, 220, 0.1);
    color: #4a6fdc;
}

.guarantee-note i {
    font-size: 1.2rem;
}

.guarantee-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .highlighted-title {
        font-size: 2.2rem;
    }
    
    .guarantee-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .guarantee-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlighted-title {
        font-size: 2rem;
    }
    
    .highlighted-subtitle {
        font-size: 1.1rem;
    }
    
    .guarantee-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .guarantee-header {
        padding: 25px 20px;
    }
    
    .guarantee-content {
        padding: 25px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--black) 0%, #222 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-showcase {
    margin: 0 auto 30px;
    max-width: 800px;
}

.product-showcase .product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.product-showcase .product-image:hover {
    transform: scale(1.02);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.option {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    white-space: nowrap;
}

.divider {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--price-yellow);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .option {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .pricing-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .divider {
        padding: 5px 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .navbar-brand {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.footer p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}

/* Footer Logo Styles */
.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Hide text when logo is present */
.footer-brand .navbar-brand span {
    display: none;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-logo {
        height: 35px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .navbar-nav.show {
        display: flex;
    }
    
    .nav-link {
        margin: 10px 0;
        padding: 10px 0;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-options {
        flex-direction: column;
    }
    
    .divider {
        padding: 10px 0;
    }
}

/* Terms of Service Styles */
.legal-content {
    padding: 60px 0;
    background-color: var(--white);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.intro-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.terms-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.terms-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-section address {
    font-style: normal;
    margin-top: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-content {
        padding: 0;
    }
}