* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure all sections have proper spacing */
section {
    margin-bottom: 2rem;
}

/* Fix any h1-h6 margin issues */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
/* Navigation Styles - Modern & Professional */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: "🎮";
    font-size: 1.2rem;
    -webkit-text-fill-color: initial;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #00b4d8);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

nav a:hover::before {
    opacity: 1;
}

nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #00b4d8);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Enhanced Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav a {
        padding: 1rem;
        border-radius: 6px;
        width: 100%;
        justify-content: center;
    }
    
    /* Improved mobile navigation accessibility */
    nav ul {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    nav ul.active {
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    
    /* Focus styles for mobile menu */
    .mobile-menu-toggle:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }
    
    nav a:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.problem-statement, .solution-statement {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    margin: 0 10px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Problem-Solution Section */
.problem-solution {
    padding: 80px 0;
    background: #f8f9fa;
}

.problem-solution h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.problem-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #00b4d8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Blog Styles */
.blog-main {
    padding-top: 100px;
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    padding: 3rem 0;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.featured-post {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-post h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.post-meta {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-post h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.blog-post time {
    color: #666;
    font-size: 0.9rem;
}

.read-more {
    color: #00b4d8;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Enhanced Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Featured Article */
.featured-article {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.article-category {
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-article h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: #333;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.article-meta time, .reading-time {
    color: #666;
    font-size: 0.9rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.quick-answer {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.quick-answer h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Warning Signs */
.warning-signs {
    margin: 2rem 0;
}

.sign {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #fff5f5;
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
}

.sign-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.sign-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.sign-content p {
    color: #666;
    line-height: 1.5;
}

/* Solution Steps */
.solution-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.solution-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

/* App Promotion */
.app-promotion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.app-promo-content h4 {
    margin-bottom: 1rem;
}

.waitlist-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.waitlist-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Tips List */
.tips-list {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tips-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #4caf50;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.5;
}

/* Related Articles */
.related-articles {
    margin: 4rem 0;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header h3 {
    margin: 1rem 0;
    color: #333;
    font-size: 1.3rem;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Enhanced Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.benefit {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* Hidden Articles */
.hidden-article {
    margin-top: 2rem;
}

.full-article {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.back-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.back-button:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Detailed Steps */
.step-detailed {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.step-detailed h4 {
    color: #333;
    margin-bottom: 1rem;
}

.step-detailed ul {
    margin-top: 1rem;
}

.step-detailed li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Success Stats */
.success-stats {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Gamification System */
.gamification-system {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.game-element {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ff6b6b;
}

/* Points Table and Gamification Elements */
.points-table {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.points-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    align-items: center;
}

.points-row:last-child {
    border-bottom: none;
}

.points-row:first-child {
    background: #e9ecef;
    font-weight: bold;
    color: #495057;
}

.task {
    font-weight: 500;
}

.points {
    text-align: center;
    font-weight: bold;
    color: #28a745;
}

.time {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Achievements */
.achievements {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.achievement {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    align-items: center;
}

.achievement-name {
    font-weight: bold;
    color: #856404;
}

.achievement-req {
    color: #6c757d;
    font-size: 0.9rem;
}

.achievement-reward {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
}

/* Implementation Guide */
.implementation-guide {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.week-guide {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #007bff;
}

.week-guide h4 {
    color: #007bff;
    margin-bottom: 1rem;
}

.week-guide ul {
    margin-left: 1rem;
}

.week-guide li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Success Stories */
.success-stories {
    margin: 2rem 0;
}

.success-stories blockquote {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-style: italic;
}

.success-stories cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #495057;
    font-style: normal;
}

/* Method Section */
.method-section {
    margin: 2rem 0;
}

/* Expert Statistics Section - Fixed Styling */
.expert-stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.stat-header {
    margin-bottom: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-box h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.stat-content .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD700;
    display: block;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-family: 'Georgia', serif;
}

.stat-content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 1rem;
}

.stat-content cite {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Design for Stats */
@media (max-width: 768px) {
    .expert-stats-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
    
    .stats-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .stats-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 2rem 1.5rem;
    }
    
    .stat-content .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .expert-stats-section {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .stats-container h2 {
        font-size: 1.8rem;
    }
    
    .stat-box h3 {
        font-size: 1.1rem;
    }
    
    .stat-content .stat-number {
        font-size: 2rem;
    }
}

/* Responsive articles grid and fluid images */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.featured-article img,
.article-card img {
    max-width: 100%;
    height: auto;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

/* Ensure images and videos scale */
img, video {
    max-width: 100%;
    height: auto;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix button styling */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Clear any float issues */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure proper box-sizing for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

/* AI FAQ Section - Professional Styling */
/* Enhanced AI FAQ Section */
.ai-faq-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 2rem;
    margin: 4rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.ai-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.faq-container h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.faq-intro {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.faq-item {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.1),
        0 2px 8px rgba(0,0,0,0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        0 5px 20px rgba(0,0,0,0.1);
    background: white;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

/* Category-specific styling */
.faq-item.urgent .faq-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.faq-item.guidelines .faq-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.faq-item.solution .faq-icon {
    background: linear-gradient(135deg, #45b7d1, #2980b9);
}

.faq-item.medical .faq-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.faq-item.safety .faq-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.faq-item.gamification .faq-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.faq-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 1.5;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
}

.answer-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.answer-section:hover {
    background: #f1f3f4;
    transform: translateX(5px);
}

.answer-section:last-child {
    margin-bottom: 0;
}

.answer-label {
    display: inline-block;
    color: #667eea;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
}

.answer-label.timeline {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.answer-label.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.answer-label.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.answer-label.stats {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.answer-label.protection {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.answer-section p {
    margin-top: 0.8rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: #444;
}

/* Age Chart Styling */
.age-chart {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.age-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.age-group:hover {
    border-color: #667eea;
    transform: scale(1.02);
}

.age-group .age {
    font-weight: 600;
    color: #333;
}

.age-group .time {
    color: #667eea;
    font-weight: 700;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Points Examples */
.points-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.point-item {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.point-item:hover {
    border-color: #2ecc71;
    background: #2ecc71;
    color: white;
    transform: translateY(-2px);
}

/* Professional Breadcrumb Navigation */
.breadcrumb-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e6ed;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #667eea;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #5a67d8;
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: #adb5bd;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Add icon support for breadcrumbs */
.breadcrumb-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.8rem 1rem;
        margin: 1rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .breadcrumb-link, .breadcrumb-current {
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        padding: 0.6rem 0.8rem;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    /* Hide middle breadcrumbs on very small screens to save space */
    .breadcrumb-item:not(:first-child):not(:last-child) {
        display: none;
    }
    
    /* Add ellipsis separator for mobile */
    .breadcrumb-item:first-child::after {
        content: "...";
        color: #adb5bd;
        margin: 0 0.5rem;
        font-weight: 600;
    }
}

/* Article Header Styling - Professional & Modern */
.article-header {
    text-align: center;
    padding: 3rem 0 4rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.article-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.article-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0 0 2.5rem 0;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.author-info::before {
    content: "👤";
    font-size: 1.1rem;
}

.article-meta time {
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta time::before {
    content: "📅";
    font-size: 1rem;
}

.reading-time {
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reading-time::before {
    content: "⏱️";
    font-size: 1rem;
}

/* Article Content Styling */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: none;
}

.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #34495e;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.article-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin: 2rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Blog Title Hero Section */
.blog-title-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin: -2rem -3rem 4rem -3rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-title-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blog-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-title-hero .article-category {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.blog-title-hero h1 {
    color: white;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.blog-title-hero .article-meta {
    color: rgba(255,255,255,0.9);
}

.blog-title-hero .author-info {
    color: rgba(255,255,255,0.95);
}

/* Responsive Design for Article Headers */
@media (max-width: 768px) {
    .article-header {
        padding: 2rem 0 3rem;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .blog-title-hero {
        padding: 4rem 0 3rem;
        margin: -1rem -1.5rem 3rem -1.5rem;
    }
    
    .blog-title-hero h1 {
        font-size: 2.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .blog-title-hero h1 {
        font-size: 2rem;
    }
    
    .article-category {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
}

/* Additional Mobile Responsiveness Improvements */

/* Extra small devices (phones, 320px and up) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.3rem !important;
    }
    
    nav {
        padding: 0.8rem !important;
    }
    
    .hero {
        padding: 100px 0 60px !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.1rem !important;
    }
    
    .problem-statement, .solution-statement {
        padding: 1rem !important;
        margin: 0.8rem 0 !important;
        font-size: 0.95rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        margin: 5px !important;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Hero section mobile improvements */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .problem-statement, .solution-statement {
        padding: 1.2rem;
        margin: 1rem 0;
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
        margin: 5px;
    }
}

/* Problem-solution section mobile improvements */
@media (max-width: 768px) {
    .problem-solution {
        padding: 50px 0;
    }
    
    .problem-solution h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .problem-solution {
        padding: 40px 0;
    }
    
    .problem-solution h2 {
        font-size: 1.8rem;
    }
    
    .problem-item {
        padding: 1.2rem;
    }
    
    .problem-item h3 {
        font-size: 1.2rem;
    }
}

/* Features section mobile improvements */
@media (max-width: 768px) {
    .features {
        padding: 50px 0;
    }
    
    .features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 40px 0;
    }
    
    .features h2 {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
}

/* FAQ section mobile improvements */
@media (max-width: 768px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Blog section mobile improvements */
@media (max-width: 768px) {
    .blog-main, .container {
        padding: 1rem;
    }
    
    /* Stack grids into single column */
    .problem-grid, .features-grid, .articles-grid {
        display: block;
    }
    .problem-item, .feature, .articles-grid .article-card, .articles-grid .featured-article {
        margin-bottom: 1.5rem;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
    /* Optimize AI answer box */
    .ai-optimized-answer {
        border-left: 4px solid #3b82f6;
        background: #f0f4ff;
        padding: 1rem;
        margin: 1rem 0;
    }
    /* Increase readability */
    h1 { font-size: 1.6rem; margin-bottom: 0.75rem; }
    h2 { font-size: 1.3rem; margin-bottom: 0.75rem; }
    p, li { font-size: 1rem; line-height: 1.5; }
    .cta-buttons button, .cta-buttons a {
        width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    /* Simplify FAQ and solution sections */
    .faq-item, .solution-section {
        background: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 1rem;
    }
    /* Reduce hero padding */
    .hero {
        padding: 60px 1rem 40px;
        text-align: left;
    }
    .hero h1 { font-size: 1.8rem; }
    .hero h2 { font-size: 1.1rem; }
}

/* Mobile-specific blog post tweaks */
@media (max-width: 768px) {
    /* Warning signs layout */
    .warning-signs .sign {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    .warning-signs .sign-icon {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
    .warning-signs .sign-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    /* Solution steps layout */
    .solution-steps .step {
        margin-bottom: 1rem;
        padding: 0;
        border: none;
    }
    .solution-steps .step-number {
        font-size: 1.2rem;
        font-weight: bold;
        margin-right: 0.5rem;
    }
    .solution-steps .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    /* Hero content container alignment */
    .blog-hero .hero-content {
        text-align: left;
        padding: 1rem 0;
    }
}

/* Print styles for mobile */
@media print {
    .mobile-menu-toggle,
    .newsletter,
    .cta-buttons,
    nav ul {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .article-content {
        font-size: 11pt;
        line-height: 1.3;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix button styling */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Clear any float issues */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure proper box-sizing for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

/* AI FAQ Section - Professional Styling */
/* Enhanced AI FAQ Section */
.ai-faq-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 2rem;
    margin: 4rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.ai-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.faq-container h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.faq-intro {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.faq-item {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.1),
        0 2px 8px rgba(0,0,0,0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        0 5px 20px rgba(0,0,0,0.1);
    background: white;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

/* Category-specific styling */
.faq-item.urgent .faq-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.faq-item.guidelines .faq-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.faq-item.solution .faq-icon {
    background: linear-gradient(135deg, #45b7d1, #2980b9);
}

.faq-item.medical .faq-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.faq-item.safety .faq-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.faq-item.gamification .faq-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.faq-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 1.5;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
}

.answer-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.answer-section:hover {
    background: #f1f3f4;
    transform: translateX(5px);
}

.answer-section:last-child {
    margin-bottom: 0;
}

.answer-label {
    display: inline-block;
    color: #667eea;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
}

.answer-label.timeline {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.answer-label.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.answer-label.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.answer-label.stats {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.answer-label.protection {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.answer-section p {
    margin-top: 0.8rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: #444;
}

/* Age Chart Styling */
.age-chart {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.age-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.age-group:hover {
    border-color: #667eea;
    transform: scale(1.02);
}

.age-group .age {
    font-weight: 600;
    color: #333;
}

.age-group .time {
    color: #667eea;
    font-weight: 700;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Points Examples */
.points-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.point-item {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.point-item:hover {
    border-color: #2ecc71;
    background: #2ecc71;
    color: white;
    transform: translateY(-2px);
}

/* Professional Breadcrumb Navigation */
.breadcrumb-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e6ed;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #667eea;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #5a67d8;
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: #adb5bd;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Add icon support for breadcrumbs */
.breadcrumb-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.8rem 1rem;
        margin: 1rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .breadcrumb-link, .breadcrumb-current {
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        padding: 0.6rem 0.8rem;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    /* Hide middle breadcrumbs on very small screens to save space */
    .breadcrumb-item:not(:first-child):not(:last-child) {
        display: none;
    }
    
    /* Add ellipsis separator for mobile */
    .breadcrumb-item:first-child::after {
        content: "...";
        color: #adb5bd;
        margin: 0 0.5rem;
        font-weight: 600;
    }
}

/* Article Header Styling - Professional & Modern */
.article-header {
    text-align: center;
    padding: 3rem 0 4rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.article-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.article-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0 0 2.5rem 0;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.author-info::before {
    content: "👤";
    font-size: 1.1rem;
}

.article-meta time {
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta time::before {
    content: "📅";
    font-size: 1rem;
}

.reading-time {
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reading-time::before {
    content: "⏱️";
    font-size: 1rem;
}

/* Article Content Styling */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: none;
}

.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #34495e;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.article-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin: 2rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Blog Title Hero Section */
.blog-title-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin: -2rem -3rem 4rem -3rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-title-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blog-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-title-hero .article-category {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.blog-title-hero h1 {
    color: white;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.blog-title-hero .article-meta {
    color: rgba(255,255,255,0.9);
}

.blog-title-hero .author-info {
    color: rgba(255,255,255,0.95);
}

/* Responsive Design for Article Headers */
@media (max-width: 768px) {
    .article-header {
        padding: 2rem 0 3rem;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .blog-title-hero {
        padding: 4rem 0 3rem;
        margin: -1rem -1.5rem 3rem -1.5rem;
    }
    
    .blog-title-hero h1 {
        font-size: 2.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .blog-title-hero h1 {
        font-size: 2rem;
    }
    
    .article-category {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
}

/* Additional Mobile Responsiveness Improvements */

/* Extra small devices (phones, 320px and up) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.3rem !important;
    }
    
    nav {
        padding: 0.8rem !important;
    }
    
    .hero {
        padding: 100px 0 60px !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.1rem !important;
    }
    
    .problem-statement, .solution-statement {
        padding: 1rem !important;
        margin: 0.8rem 0 !important;
        font-size: 0.95rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        margin: 5px !important;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Hero section mobile improvements */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .problem-statement, .solution-statement {
        padding: 1.2rem;
        margin: 1rem 0;
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
        margin: 5px;
    }
}

/* Problem-solution section mobile improvements */
@media (max-width: 768px) {
    .problem-solution {
        padding: 50px 0;
    }
    
    .problem-solution h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .problem-solution {
        padding: 40px 0;
    }
    
    .problem-solution h2 {
        font-size: 1.8rem;
    }
    
    .problem-item {
        padding: 1.2rem;
    }
    
    .problem-item h3 {
        font-size: 1.2rem;
    }
}

/* Features section mobile improvements */
@media (max-width: 768px) {
    .features {
        padding: 50px 0;
    }
    
    .features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 40px 0;
    }
    
    .features h2 {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
}

/* FAQ section mobile improvements */
@media (max-width: 768px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Blog section mobile improvements */
@media (max-width: 768px) {
    .blog-main, .container {
        padding: 1rem;
    }
    
    /* Stack grids into single column */
    .problem-grid, .features-grid, .articles-grid {
        display: block;
    }
    .problem-item, .feature, .articles-grid .article-card, .articles-grid .featured-article {
        margin-bottom: 1.5rem;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
    /* Optimize AI answer box */
    .ai-optimized-answer {
        border-left: 4px solid #3b82f6;
        background: #f0f4ff;
        padding: 1rem;
        margin: 1rem 0;
    }
    /* Increase readability */
    h1 { font-size: 1.6rem; margin-bottom: 0.75rem; }
    h2 { font-size: 1.3rem; margin-bottom: 0.75rem; }
    p, li { font-size: 1rem; line-height: 1.5; }
    .cta-buttons button, .cta-buttons a {
        width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    /* Simplify FAQ and solution sections */
    .faq-item, .solution-section {
        background: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 1rem;
    }
    /* Reduce hero padding */
    .hero {
        padding: 60px 1rem 40px;
        text-align: left;
    }
    .hero h1 { font-size: 1.8rem; }
    .hero h2 { font-size: 1.1rem; }
}

/* Mobile-specific blog post tweaks */
@media (max-width: 768px) {
    /* Warning signs layout */
    .warning-signs .sign {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    .warning-signs .sign-icon {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
    .warning-signs .sign-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    /* Solution steps layout */
    .solution-steps .step {
        margin-bottom: 1rem;
        padding: 0;
        border: none;
    }
    .solution-steps .step-number {
        font-size: 1.2rem;
        font-weight: bold;
        margin-right: 0.5rem;
    }
    .solution-steps .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    /* Hero content container alignment */
    .blog-hero .hero-content {
        text-align: left;
        padding: 1rem 0;
    }
}

/* Print styles for mobile */
@media print {
    .mobile-menu-toggle,
    .newsletter,
    .cta-buttons,
    nav ul {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .article-content {
        font-size: 11pt;
        line-height: 1.3;
    }
}


