/* Napocalypse Styles */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #3498db;
    --color-primary-dark: #2980b9;
    --color-secondary: #667eea;
    --color-accent: #764ba2;
    --color-success: #27ae60;
    --color-warning: #f39c12;

    --color-text-primary: #2c3e50;
    --color-text-secondary: #333;
    --color-text-muted: #666;
    --color-text-light: #7f8c8d;

    --color-bg-light: #f8f9fa;
    --color-bg-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Layout */
    --max-width: 1200px;
    --border-radius: 8px;
    --border-radius-large: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Main element styling */
main,
.main {
    min-height: 60vh;
    padding: 20px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

small {
    font-size: 0.85em;
    color: #666;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Header */
.header {
    background: white;
    color: #2C3E50;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Logo Styles - Used across all pages */
.logo, .header .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left-aligned */
}

.logo-link, .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #2c3e50;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

/* Nav brand styling (matching start.html) */
nav .brand-icon {
    font-size: 1.8rem;
}

nav .brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2c3e50;
}

/* Navigation styles (matching home page) */
nav {
    background: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.cta-button {
    background: #3498db;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.mobile-active li {
        margin: 0.5rem 0;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 500px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.brand-mark {
    margin-bottom: 1.5rem;
}

.brand-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-box {
    margin-top: 2rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    opacity: 1;
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution {
    padding: 4rem 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: left;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.checkmark {
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.author {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* Testimonials Section (home page) */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-section .testimonial-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.price-box {
    max-width: 600px;
    margin: 2rem auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.price-strike {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #95a5a6;
}

.price-current {
    font-size: 4rem;
    font-weight: bold;
    color: #27ae60;
    margin: 1rem 0;
}

.price-subtitle {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 2rem;
}

.price-features {
    text-align: left;
    list-style: none;
    margin: 2rem 0;
}

.price-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.trust-badges {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 0.85rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.guarantee-text {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #d5f4e6;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Accessibility Focus States */
a:focus,
button:focus,
.btn-primary:focus,
.btn-secondary:focus,
.hero-primary-btn:focus,
.hero-secondary-btn:focus,
.cta-button:focus,
.resource-link:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 2px solid #3498db;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Blog-specific focus states */
.navigation-bar .nav-links a:focus,
.sidebar-cta-btn:focus,
.read-more-btn:focus,
.related-articles a:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #666;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.table-of-contents h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.table-of-contents ol {
    margin: 0;
    padding-left: 1.5rem;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #667eea;
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Hide floating CTA on very small screens */
@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* FAQ */
.faq {
    padding: 4rem 0;
}

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

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    background: #f8f9fa;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Quiz Styles */
.quiz-section {
    padding: 2rem 0;
    min-height: 80vh;
}

.quiz-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quiz-benefits {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    list-style: none;
}

.quiz-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.quiz-cta-text {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.quiz-container {
    max-width: 800px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transition: width 0.3s ease;
    border-radius: 5px;
}

.progress-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.question {
    display: none;
    animation: fadeIn 0.3s ease;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.question.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.question-subtitle {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option {
    display: block;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option:hover {
    border-color: #3498db;
    background: #e8f4f8;
}

.option input[type="radio"] {
    display: none;
}

.option input[type="radio"]:checked + .option-text {
    font-weight: 600;
}

/* Quiz Option Button Styles */
.option-btn {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: white;
}

.option-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #748ffc 0%, #8b5fbf 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.option-btn:active {
    transform: translateY(-1px);
}

.option-btn strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.option-btn span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.option-btn:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.option input[type="radio"]:checked ~ .option {
    border-color: #3498db;
    background: #e8f4f8;
}

.option-text {
    font-size: 1.1rem;
}

.email-input-container {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eaf8 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.email-input-container.highlighted {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.email-input-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.email-input-container input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.email-input-container input:focus {
    outline: none;
    border-color: #3498db;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.loading-state {
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #ecf0f1;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Page */
.success-section {
    padding: 2rem 0;
    min-height: 80vh;
}

.success-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.success-details {
    text-align: left;
    margin: 3rem 0;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content ul {
    margin-left: 1.5rem;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.guarantee-box, .tips-box, .cta-box {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
}

.guarantee-box {
    background: #d5f4e6;
    border-left: 4px solid #27ae60;
}

.tips-box {
    background: #fef5e7;
    border-left: 4px solid #f39c12;
    text-align: left;
}

.tips-box ol {
    margin-left: 1.5rem;
}

.tips-box li {
    margin-bottom: 1rem;
}

.cta-box {
    background: #e8f4f8;
    border-left: 4px solid #3498db;
}

/* Personalization Form Styles */
.personalization-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.personalization-box h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.personalization-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.personalization-form .form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.personalization-form .form-group {
    flex: 1;
    max-width: 250px;
    text-align: left;
}

.personalization-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.personalization-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.personalization-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.personalization-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.personalization-form small {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.personalization-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
    backdrop-filter: blur(10px);
}

.personalization-benefits p {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.personalization-benefits ul {
    list-style: none;
    margin: 0;
}

.personalization-benefits li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.personalization-success {
    padding: 2rem;
    text-align: center;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-emoji {
    font-size: 2rem;
}

.success-message p {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

/* Blog Post Styles */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-main-content {
    min-width: 0; /* Prevents overflow issues */
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

/* Blog CTA Button Styles */
.blog-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white !important;
}

.blog-cta-container {
    text-align: center;
    margin: 2rem 0;
}

/* Related Links Styling */
.blog-post-content a:not(.blog-cta-button) {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-post-content a:not(.blog-cta-button):hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Sticky Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-articles {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.related-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-articles a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #3498db;
}

.sidebar-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.sidebar-cta h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.sidebar-cta p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.sidebar-cta-btn {
    background: white;
    color: #3498db;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Navigation Bar Styles */
.navigation-bar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* Blog navigation brand styling */
.navigation-bar .brand-icon {
    font-size: 1.8rem;
}

.navigation-bar .brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.cta-btn {
    background: white;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        order: 1; /* Show sidebar below content on mobile */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .price-current {
        font-size: 3rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .personalization-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .personalization-box {
        padding: 1.5rem;
    }
    
    .blog-layout {
        padding: 1rem;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .logo-text {
        display: none;
    }
}

/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
}

.legal-container h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.legal-container .last-updated {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

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

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container p {
    margin-bottom: 1rem;
}

.guarantee-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.guarantee-highlight h3 {
    color: white;
    margin-bottom: 1rem;
}

.guarantee-highlight p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.important-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-container h1 {
        font-size: 2rem;
    }
    
    .legal-container h2 {
        font-size: 1.5rem;
    }
}

/* Home Page Styles */
.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-primary-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-secondary-btn {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.hero-secondary-btn:hover {
    background: white;
    color: #667eea;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 2rem;
    background: white;
}

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

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.welcome-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.approach-card:hover {
    transform: translateY(-4px);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
}

/* Resources Section */
.resources-section {
    padding: 5rem 2rem;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #2980b9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-radius: 15px;
    margin: 3rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Quiz Header - Minimal, No Navigation */
.quiz-header {
    background: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
}

.quiz-header .container {
    max-width: 1200px;
    margin: 0 auto;
}

.quiz-header .logo {
    display: flex;
    align-items: center;
}

.quiz-header .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.quiz-header .logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.quiz-header .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* =================== BLOG INDEX STYLES =================== */

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #3498db;
    color: white;
}

.tab-button:hover {
    background: #667eea;
    color: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #3498db;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.post-card .post-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #2980b9;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-tabs {
        flex-direction: column;
        align-items: center;
    }
}

/* =================== SUCCESS STORIES STYLES =================== */

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #667eea;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-card .method-tag {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
