/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #3498db;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #27ae60;
    color: white;
}

.btn-primary:hover {
    background-color: #219955;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #3498db;
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #2c3e50;
}

.logo span {
    color: #27ae60;
}

nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
}

nav li {
    padding: 0;
    margin: 0;
}

nav li:before {
    content: none;
}

nav a {
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

nav a:hover {
    color: #27ae60;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-callout {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
}

.hero-callout p {
    font-size: 1.25rem;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefits-list h2 {
    color: #27ae60;
}

.benefits-list li:before {
    color: #27ae60;
}

.testimonial {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial blockquote:before {
    content: """;
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: #e0e0e0;
    font-family: Georgia, serif;
}

.testimonial cite {
    font-weight: 600;
    display: block;
    text-align: right;
}

/* Problem Section */
.problem {
    background-color: #fff;
}

.problem h2 {
    color: #e74c3c;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.problem-column h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.problem-column li:before {
    content: "✗";
    color: #e74c3c;
}

/* Solution Section */
.solution {
    background-color: #f0f7f4;
}

.solution h2 {
    color: #27ae60;
    text-align: center;
}

.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.solution h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-feature {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.solution-feature h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-box:nth-child(2) {
    background-color: #e8f4fd;
}

.feature-box:nth-child(3) {
    background-color: #f0f7f4;
}

.feature-box:nth-child(4) {
    background-color: #fef5e7;
}

.feature-box h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

.feature-box:nth-child(2) h3 {
    color: #2980b9;
}

.feature-box:nth-child(3) h3 {
    color: #27ae60;
}

.feature-box:nth-child(4) h3 {
    color: #e67e22;
}

.feature-box strong {
    color: #2c3e50;
}

/* Results Section */
.results {
    background-color: #2c3e50;
    color: white;
}

.results h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.results-grid .result-box:nth-child(1) .result-number {
    color: #3498db;
}

.results-grid .result-box:nth-child(2) .result-number {
    color: #27ae60;
}

.results-grid .result-box:nth-child(3) .result-number {
    color: #e67e22;
}

.testimonial-large {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
}

.testimonial-large blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-large cite {
    font-weight: 600;
    display: block;
    text-align: right;
}

/* How It Works Section */
.how-it-works {
    background-color: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step:nth-child(1) h3 {
    color: #3498db;
}

.step:nth-child(2) h3 {
    color: #27ae60;
}

.step:nth-child(3) h3 {
    color: #e67e22;
}

/* Pricing Section */
.pricing {
    background-color: white;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-plan {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-plan h3 {
    margin-bottom: 1.5rem;
}

.pricing-plan:nth-child(1) h3 {
    color: #3498db;
}

.pricing-plan:nth-child(2) h3 {
    color: #27ae60;
}

.pricing-plan:nth-child(3) h3 {
    color: #e67e22;
}

.pricing-plan ul {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-plan li:before {
    content: "✓";
}

.price {
    margin-bottom: 2rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

.payment-option {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.pricing-plan.featured {
    border: 2px solid #27ae60;
    transform: scale(1.05);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.limited-availability {
    background-color: #fee;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid #e74c3c;
}

.limited-availability p {
    margin: 0;
    color: #c0392b;
}

/* Guarantee Section */
.guarantee {
    background-color: #f8f9fa;
    text-align: center;
}

.guarantee h2 {
    margin-bottom: 2rem;
}

.guarantee p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

.faq-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background-color: #f0f7f4;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
}

.contact-callout {
    background-color: #3498db;
    color: white;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.contact-callout h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-callout p {
    margin-bottom: 0;
}

.contact-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-benefits ul {
    text-align: left;
}

.cta-text {
    margin-bottom: 2rem;
}

.contact-phone {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .benefits-grid,
    .problem-grid,
    .solution-grid,
    .results-grid,
    .steps-grid,
    .pricing-grid,
    .faq-grid,
    .contact-benefits {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-5px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-callout p {
        font-size: 1.1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 1rem 20px;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .btn {
        display: block;
        width: 100%;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
}