/* style.css */
/* Global Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f0f4f2;
    --primary-btn: linear-gradient(to right, #0ba850, #74c043);
    --primary-btn-hover: linear-gradient(to right, #0a9747, #65b33c);
    --value-bg: #c3ea69;
    --bonus-value: #f7f67e;
    --medium-gray: #666666;
    --dark-gray: #333333;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    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;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-btn);
    margin: 15px auto;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--medium-gray);
}

.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;
    border: none;
}

.btn-primary {
    background: var(--primary-btn);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-xl {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Navigation Styles */
.navbar {
    background-color: var(--white);
    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;
    color: var(--black);
}

.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(--dark-gray);
    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-btn);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--dark-gray);
    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(--white);
        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;
    }
}

/* Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-cta {
    margin-top: 40px;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.intro-image, .intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.intro-cta {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image, .intro-text {
        width: 100%;
    }
}

/* What Is Section */
.what-is-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.what-is-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.what-is-text, .what-is-image {
    flex: 1;
    min-width: 300px;
}

.what-is-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.what-is-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Big CTA Section */
.big-cta-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.big-cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.big-cta-image, .big-cta-text {
    flex: 1;
    min-width: 300px;
}

.image-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-photo {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--white);
    display: block;
}

.big-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--black);
}

.big-cta-text .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.benefits-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    font-size: 1.3rem;
    color: #0ba850;
}

.pricing-highlight {
    margin: 30px 0;
    display: inline-block;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.original-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 15px;
    color: var(--dark-gray);
}

.current-price-1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0ba850;
}

.discount-badge {
    display: inline-block;
    background: var(--value-bg);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
}

.cta-buttons {
    margin: 30px 0;
}

@media (max-width: 768px) {
    .big-cta-text h2 {
        font-size: 2rem;
    }
    
    .big-cta-text .lead {
        font-size: 1.1rem;
    }
    
    .current-price-1 {
        font-size: 2.5rem;
    }
    
    .original-price {
        font-size: 1.5rem;
    }
}

/* Features Section with Images */
.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #0ba850;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-image {
    height: 180px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-value {
    background: var(--value-bg);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 150px;
    }
}

/* Works Section */
.works-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #0ba850;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(11, 168, 80, 0.1);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #0ba850;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* CTA Sections */
.cta-section {
    background: var(--primary-btn);
    padding: 80px 0;
    color: var(--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;
}

/* Bonuses Section with Image Value Badges */
.bonuses-section {
    padding: 80px 0;
    background-color: var(--white);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.bonus-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 5px solid #0ba850;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bonus-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-value-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--bonus-value);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.bonus-header {
    background: #0ba850;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-number {
    background: var(--white);
    color: #0ba850;
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.bonus-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonuses-total {
    text-align: center;
    margin-top: 50px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #0ba850;
}

.total-value {
    display: inline-flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
}

.value-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.value-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0ba850;
}

.bonuses-note {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.bonuses-description {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.bonuses-limited {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 20px;
    font-style: italic;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-image {
        height: 150px;
    }
    
    .value-label {
        font-size: 1rem;
    }
    
    .value-amount {
        font-size: 2rem;
    }
    
    .bonuses-note {
        font-size: 1rem;
    }
    
    .bonus-value-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 5px solid #0ba850;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0ba850;
    margin-bottom: 20px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    width: 100%;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-quote i {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: #0ba850;
    opacity: 0.2;
}

.testimonial-quote p {
    padding-left: 25px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.testimonial-author h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-role {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Testimonials Rating Styles */
.overall-rating {
    text-align: center;
    margin: 30px 0 40px;
}

.rating-stars {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-left: 10px;
    vertical-align: middle;
}

.rating-count {
    color: var(--medium-gray);
    font-size: 1rem;
}

.testimonial-card .rating {
    font-size: 0.9rem;
    color: #ffc107;
    margin: 8px 0;
}

.rating-date {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin-left: 8px;
    font-style: italic;
}

.view-all-reviews {
    text-align: center;
    margin-top: 40px;
}

.view-all-reviews .btn-outline {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
}

.view-all-reviews .btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.view-all-reviews i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--white);
}

.guarantee-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #0ba850;
}

.guarantee-badge {
    flex-shrink: 0;
}

.money-back-badge {
    background: var(--white);
    border: 3px solid #0ba850;
    border-radius: 10px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.badge-days {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0ba850;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
    padding: 0 10px;
}

.guarantee-text {
    flex: 1;
    min-width: 300px;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guarantee-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.guarantee-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.guarantee-text strong {
    color: #0ba850;
}

@media (max-width: 768px) {
    .money-back-badge {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }
    
    .badge-days {
        font-size: 2.8rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--dark-gray);
}

.faq-question i {
    font-size: 1.2rem;
    color: #0ba850;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: var(--primary-btn);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.limited-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--value-bg);
    margin-top: 20px;
}

/* Final CTA Image Styles */
.final-cta-image {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
}

.final-cta-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.2);
}

.image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--value-bg);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .final-cta-image {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .image-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        bottom: -12px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #0ba850;
}

.pricing-header {
    background: #0ba850;
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
}

.discount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--value-bg);
}

.pricing-content {
    padding: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: var(--dark-gray);
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #0ba850;
}

.pricing-cta {
    text-align: center;
}

.secure-checkout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.secure-checkout i {
    color: #0ba850;
}

/* Secure Checkout Badge Styles */
.secure-checkout-badge {
    text-align: center;
    margin: 20px 0;
}

.secure-badge-img {
    max-width: 300px;
    height: auto;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .secure-badge-img {
        max-width: 250px;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--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;
    color: var(--white);
}

.footer p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #0ba850;
}

.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: #0ba850;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0ba850;
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: #0a9747;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Privacy Policy Styles */
.privacy-header {
    background: var(--light-bg);
    padding: 60px 0 40px;
    text-align: center;
}

.privacy-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.last-updated {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.privacy-content {
    padding: 60px 0;
    background-color: var(--white);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 5px solid #0ba850;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.privacy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #0ba850;
    border-radius: 50%;
}

.privacy-section h3 {
    font-size: 1.3rem;
    color: #0ba850;
    margin: 25px 0 15px;
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--black);
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-intro, .contact-info {
        padding: 20px;
    }
}

/* Terms of Service Styles */
.terms-header {
    background: var(--light-bg);
    padding: 60px 0 40px;
    text-align: center;
}

.terms-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.last-updated {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.terms-content {
    padding: 60px 0;
    background-color: var(--white);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 5px solid #0ba850;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.terms-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #0ba850;
    border-radius: 50%;
}

.terms-section h3 {
    font-size: 1.3rem;
    color: #0ba850;
    margin: 25px 0 15px;
}

.terms-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.terms-section strong {
    color: var(--black);
}

.contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--black);
}

/* Table of Contents for easier navigation */
.terms-toc {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.terms-toc h3 {
    margin-top: 0;
    color: var(--black);
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.terms-toc ul {
    columns: 2;
    column-gap: 30px;
}

.terms-toc li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.terms-toc a {
    color: #0ba850;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-toc a:hover {
    color: var(--black);
    text-decoration: underline;
}

/* Responsive adjustments for terms page */
@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2.2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .terms-intro, .contact-info {
        padding: 20px;
    }
    
    .terms-toc ul {
        columns: 1;
    }
}

/* Refund Policy Styles */
.refund-header {
    background: var(--light-bg);
    padding: 60px 0 40px;
    text-align: center;
}

.refund-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.last-updated {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.refund-content {
    padding: 60px 0;
    background-color: var(--white);
}

.refund-container {
    max-width: 900px;
    margin: 0 auto;
}

.refund-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 5px solid #0ba850;
}

.refund-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.refund-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f4f2 0%, #e1e8e5 100%);
    border-radius: 10px;
    border: 2px solid #0ba850;
}

.refund-highlight-text {
    flex: 1;
    min-width: 300px;
}

.refund-highlight h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
}

.refund-highlight ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.refund-highlight li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.refund-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.refund-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.refund-section h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.refund-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #0ba850;
    border-radius: 50%;
}

.refund-section h3 {
    font-size: 1.3rem;
    color: #0ba850;
    margin: 25px 0 15px;
}

.refund-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.refund-section ul, .refund-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.refund-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.refund-section strong {
    color: var(--black);
}

.contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--black);
}

.refund-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    padding: 25px;
    background: #e8f4fd;
    border-radius: 10px;
    border-left: 5px solid #2196F3;
}

.refund-note .icon {
    font-size: 2rem;
    color: #2196F3;
    flex-shrink: 0;
}

.refund-note h3 {
    margin-top: 0;
    color: #0c5b9c;
}

.refund-note p {
    margin-bottom: 0;
    color: #2c3e50;
}

/* Guarantee badge adjustments for refund page */
.refund-highlight .guarantee-badge {
    flex-shrink: 0;
}

.refund-highlight .money-back-badge {
    width: 150px;
    height: 150px;
}

.refund-highlight .badge-days {
    font-size: 3.5rem;
}

/* Responsive adjustments for refund page */
@media (max-width: 768px) {
    .refund-header h1 {
        font-size: 2.2rem;
    }
    
    .refund-section h2 {
        font-size: 1.5rem;
    }
    
    .refund-section h3 {
        font-size: 1.2rem;
    }
    
    .refund-intro, .contact-info {
        padding: 20px;
    }
    
    .refund-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .refund-highlight .money-back-badge {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .refund-highlight .badge-days {
        font-size: 2.8rem;
    }
    
    .refund-note {
        flex-direction: column;
        text-align: center;
    }
}