/*
Theme Name: The Best Car Warranties
Description: A WordPress theme clone of The Best Car Warranties website
Version: 1.0
Author: Custom Theme
*/

/* Design System */
:root {
    /* Colors */
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --accent: #10b981;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    
    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.15s ease-in-out;
    --transition-fast: all 0.1s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-6);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    text-decoration: none;
}

.site-logo-img {
    height: 180px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

.logo-text .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
	justify-self:center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: var(--font-size-base);
    position: relative;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.main-navigation a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-navigation a:hover:after {
    width: 100%;
}

/* Hero Section - Updated with blue gradient background */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(30, 58, 138, 0.8)), url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white !important;
    position: relative;
    overflow: hidden;
    padding: var(--space-16) var(--space-6);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    max-width: 800px;
    padding: var(--space-8);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    margin-bottom: var(--space-6);
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #f97316);
    color: white;
    box-shadow: var(--shadow-xl);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Update Section */
.update-section {
    background: var(--gray-50);
    padding: var(--space-6) 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.update-section p {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Trust badges */
.trust-badges {
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.trust-badges .badges-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    justify-content: center;
    color: var(--gray-700);
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.trust-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-badge i {
    color: var(--accent);
    font-size: var(--font-size-lg);
}

.trust-badge:hover i {
    color: white;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Provider Cards */
.providers-section {
    background: var(--gray-50);
    padding: var(--space-24) 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

.provider-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    overflow: hidden;
}

.provider-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gray-200), var(--gray-200));
    transition: var(--transition);
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.provider-card:hover::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.provider-card.top-pick {
    border: 2px solid var(--primary-light);
    background: linear-gradient(135deg, white, rgba(30, 64, 175, 0.02));
}

.provider-card.top-pick::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.provider-card.top-pick::after {
    content: "🏆 TOP CHOICE";
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: linear-gradient(135deg, var(--secondary), #f97316);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-8);
    gap: var(--space-6);
}

.provider-info {
    flex: 1;
}

.provider-logo {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    letter-spacing: -0.025em;
}

.provider-logo img {
    height: 50px !important;
    width: 50px !important;
    min-width: 50px !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-md) !important;
    display: block !important;
    vertical-align: middle !important;
    object-fit: contain !important;
    background: #f0f0f0 !important;
    padding: 8px !important;
    border: 2px solid #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.rating-score {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.stars {
    display: flex;
    gap: var(--space-1);
}

.star {
    color: var(--secondary);
    font-size: var(--font-size-xl);
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.review-count {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--accent);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.exclusive-offer {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), #fbbf24);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--warning);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.exclusive-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.exclusive-offer h3 {
    color: var(--gray-900);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-amount {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--gray-900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.provider-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 25px;
}

/* Plans/price UI */
.plan-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 6px;
    color: #666;
    font-size: 14px;
}

.price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: #fff7f7;
    border: 1px solid #ffdede;
    color: #e6362f;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.price .amount { font-size: 22px; }
.price .period { font-size: 12px; color: #a33; font-weight: 600; }

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.badge {
    background: #f2f4f7;
    color: #333;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
}

.badge.success { background:#e9f8ef; border-color:#c7eed6; color:#137a2a; }
.badge.info { background:#eef6ff; border-color:#dbeafe; color:#1d4ed8; }
.badge.warning { background:#fff7e6; border-color:#ffecb5; color:#b45309; }

.ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #111827;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.features-list {
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
}

.rating-grade {
    text-align: center;
}

.grade-label {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.grade-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto;
}

.cta-button {
    background: #e6362f;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 14px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c0221d;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #007bff;
    font-size: 14px;
    margin-top: 10px;
    justify-content: center;
}

/* Right side highlights list */
.right-highlights {
    list-style: none;
    margin: 14px 0 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.right-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 600;
    justify-content: center;
}

.right-highlights i {
    color: #10b981;
}

/* Editor's Choice Section */
.editors-choice {
    background: #fff;
    padding: 60px 0;
}

.editors-choice .provider-logo img {
    height: 50px !important;
    width: 50px !important;
    min-width: 50px !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-md) !important;
    display: block !important;
    vertical-align: middle !important;
    object-fit: contain !important;
    background: #f0f0f0 !important;
    padding: 8px !important;
    border: 2px solid #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-title {
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    color: #111827;
}

/* Articles Section */
.articles-section {
    background: #fff;
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #fbfbfb;
    padding: 40px 0 20px;
    border-top: 1px solid #e0e0e0;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--gray-200);
}

.footer-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.footer-navigation a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.footer-navigation a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 15px;
}

.privacy-terms {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Quote Modal Styles */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc3545;
}

.submit-btn {
    width: 100%;
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c82333;
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message h2 {
    color: #28a745;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Animation Classes */
.provider-card,
.article-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.provider-card.animate-in,
.article-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Content Area Styles */
.content-area {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.entry-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-content {
    line-height: 1.8;
    color: #333;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 30px 0 15px 0;
    color: #333;
}

.entry-content h2 {
    font-size: 28px;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
}

.entry-content h3 {
    font-size: 24px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.tag-links {
    color: #666;
    font-size: 14px;
}

.page-links {
    margin: 30px 0;
    text-align: center;
}

.page-links a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.page-links a:hover {
    background: #c82333;
}

/* Comments Styles */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.comment-author {
    font-weight: bold;
    color: #333;
}

.comment-metadata {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-content {
    color: #333;
    line-height: 1.6;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation {
        width: 100%;
        text-align: center;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .provider-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .exclusive-offer {
        margin-left: 0;
        text-align: left;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .provider-card {
        padding: 20px;
    }
    
    .rating-score {
        font-size: 28px;
    }
}
