/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 100%);
    min-height: 100vh;
}

/* Navigation Header */
.nav-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    background: linear-gradient(135deg, #FF8C42, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FF8C42;
    background: rgba(255, 140, 66, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 3px;
    background: #FF8C42;
    border-radius: 1.5px;
}

/* Blog Container */
.blog-container {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
    
}

.blog-post {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.blog-post.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0.9;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-icon {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.8;
}

/* Blog Content */
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-section {
    margin-bottom: 2rem;
}

.lead-paragraph {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #FF8C42, #FFD700);
    border-radius: 1.5px;
}

h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.styled-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    color: #4b5563;
}

.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF8C42;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF8C42, #FFD700);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 140, 66, 0.1);
}

/* Ritual Days */
.ritual-days {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.day-section {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.day-title {
    background: linear-gradient(135deg, #FF8C42, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.ritual-steps {
    display: grid;
    gap: 1rem;
}

.step {
    padding: 1rem;
    background: #fefaf7;
    border-radius: 0.5rem;
    border-left: 3px solid #FF8C42;
}

/* Items Grid */
.items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.ritual-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ritual-item:hover {
    background: #fef7ed;
    border-color: #FF8C42;
    color: #FF8C42;
}

/* Myths & Facts */
.myths-facts {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.myth-fact-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.myth-section {
    background: #fef2f2;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid #ef4444;
    margin-bottom: 0.75rem;
}

.fact-section {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid #22c55e;
}

/* Trust Points */
.trust-points {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.trust-point {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.trust-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 140, 66, 0.1);
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #fef7ed, #fff7ed);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #fed7aa;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #834140, #8a0a08);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="20" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.cta-section p,
.cta-tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.cta-tagline {
    font-weight: 600;
    color: #FFD700;
}

.cta-button {
    background: linear-gradient(135deg, #FF8C42, #FFD700);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
}

/* Blog Navigation */
.blog-navigation {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}

.blog-navigation .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #FF8C42;
    color: white;
    border-color: #FF8C42;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    background: none;
    color: #6b7280;
    border-color: #e5e7eb;
}

.nav-icon {
    width: 1rem;
    height: 1rem;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF8C42;
    transform: scale(1.2);
}

.dot:hover {
    background: #FF8C42;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }

    .blog-container {
        margin-top: 120px;
    }

    .blog-header {
        padding: 1.5rem;
    }

    .header-content,
    .blog-content {
        padding: 1.5rem 1rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefits-grid,
    .ritual-days,
    .myths-facts,
    .trust-points {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .day-section,
    .myth-fact-item,
    .trust-point,
    .highlight-section,
    .cta-section {
        padding: 1.25rem;
    }

    .cta-section {
        margin: 1.5rem 0.5rem;
    }

    .blog-navigation .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h2 {
        font-size: 1.25rem;
    }

    .blog-header h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1rem;
    }

    p, .lead-paragraph, .styled-list li {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .ritual-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-btn {
        font-size: 0.85rem;
    }

    .dot {
        width: 0.5rem;
        height: 0.5rem;
    }
}
.logo img {
    height: 60px;
    width: auto;
}   


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 50%, #fffbf0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin-top: 83px;

    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
}

.header-content {
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.flame-icon {
    font-size: 2rem;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

/* Blog Title Section */
.blog-title {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
}

.tag-orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    color: #ea580c;
}

.tag-red {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #dc2626;
}

.tag-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

/* Introduction Section */
.intro-section {
    margin-bottom: 4rem;
}

.intro-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ea580c;
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
}

.closing-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

/* What Are Section */
.what-are-section {
    margin-bottom: 4rem;
}

.what-are-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.definition-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #0ea5e9;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
}

.definition-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.call-to-action {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0ea5e9;
    text-align: center;
    margin-top: 2rem !important;
    font-style: italic;
}

/* Myths & Facts Section */
.myths-facts-section {
    margin-bottom: 4rem;
}

.myths-facts-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
}

.myth-fact-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.myth-fact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.myth-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.myth-header {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 2rem;
    border-bottom: 1px solid #fecaca;
}

.myth-label {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.myth-header h3 {
    font-size: 1.3rem;
    color: #991b1b;
    margin-top: 1rem;
    font-weight: 600;
}

.fact-content {
    padding: 2rem;
}

.fact-label {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.fact-content p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

/* Misconceptions Section */
.misconceptions-section {
    margin-bottom: 4rem;
}

.misconceptions-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.explanation-card {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #f59e0b;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
}

.explanation-card p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 4rem;
}

.benefits-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
}

.benefits-note {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #22c55e;
    font-size: 1.1rem;
    color: #374151;
    text-align: center;
    font-style: italic;
}

/* Why Gokarna Section */
.why-gokarna-section {
    margin-bottom: 4rem;
}

.why-gokarna-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Truth Section */
.truth-section {
    margin-bottom: 4rem;
}

.truth-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.truth-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #64748b;
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.1);
}

.truth-card p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    margin-bottom: 4rem;
}

.cta-card {
    
    color: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px);
}

.cta-tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 1rem !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo .flame-icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .blog-title h1 {
        font-size: 2rem;
    }
    
    .tags {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-card,
    .definition-card,
    .explanation-card,
    .truth-card {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .cta-card {
        padding: 3rem 2rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .myth-fact-grid {
        grid-template-columns: 1fr;
    }
    
    .myth-header,
    .fact-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 0;
    }
    
    .intro-card,
    .definition-card,
    .explanation-card,
    .truth-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .myth-fact-card,
    .benefit-item,
    .feature-card {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .myth-fact-card:nth-child(1) { animation-delay: 0.1s; }
    .myth-fact-card:nth-child(2) { animation-delay: 0.2s; }
    .myth-fact-card:nth-child(3) { animation-delay: 0.3s; }
    .myth-fact-card:nth-child(4) { animation-delay: 0.4s; }
    .myth-fact-card:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .myth-fact-card,
    .feature-card,
    .benefit-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
}


.blog-preview-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.blog-preview-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 30px;
  margin-top: 128px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-preview-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.blog-preview-excerpt {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #aa8453;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #8a6b3c;
}

