/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global styles */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fbfbfd;
    position: relative;
}

/* Add subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#3498db 1px, transparent 1px), radial-gradient(#3498db 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.03;
    z-index: -1;
}

/* Featured Banners Styles */
.featured-comparison {
    margin: 40px 0;
}

.featured-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.featured-banner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.featured-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.featured-banner img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-banner:hover img {
    transform: scale(1.03);
}

.featured-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .featured-banners {
        grid-template-columns: 1fr;
    }
    
    .featured-banner img {
        max-height: 180px;
    }
}

/* Logo styles */
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo::before {
    content: "\1F916";  /* Robot emoji */
    font-size: 28px;
    margin-right: 10px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.logo span {
    color: #e74c3c;
    -webkit-text-fill-color: #e74c3c;
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e74c3c;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo-container {
    text-align: center;
    border-bottom: 2px solid #f1f1f1;
    padding: 15px 0 20px;
    position: relative;
    overflow: hidden;
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, #9b59b6, transparent);
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #7f8c8d;
    display: block;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

/* Navigation Menu */
.main-nav {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0;
    padding: 0;
    position: relative;
}

.main-nav li a {
    color: #333;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav li a:hover::after {
    width: 60%;
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav li a {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav li:last-child a {
        border-bottom: none;
    }
}

/* Homepage Styles */
/* Hero section */
.hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 15px;
}

/* Featured Comparison Banner */
.featured-comparison {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-banner {
    display: block;
    position: relative;
}

.featured-banner img {
    display: block;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.featured-comparison:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .featured-comparison {
        margin-bottom: 30px;
    }
}

.home-content .hero h1 {
    margin-top: 0;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.home-content .tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.featured-reviews {
    margin: 40px 0;
}

.section-intro {
    margin: 0 auto 25px;
    max-width: 800px;
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, #3498db, #9b59b6);
    border-image-slice: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #2c3e50;
}

.hero-benefit {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.bestseller-badge {
    background: linear-gradient(135deg, #ff9900, #ff6a00);
    color: #fff;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin: 10px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(255, 153, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bestseller-badge strong {
    font-size: 1.1rem;
}

.ratings-count {
    display: inline-block;
    font-style: italic;
    color: #666;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.review-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.review-card .rating {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.about-us {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .home-content .hero h1 {
        font-size: 2rem;
    }
}

/* Common elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #333;
}

h1 {
    font-size: 2em;
    color: #2c3e50;
}

h2 {
    font-size: 1.75em;
    color: #3498db;
}

h3 {
    font-size: 1.5em;
    color: #2c3e50;
}

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

a:hover {
    text-decoration: underline;
}

/* Common components */
.cta-button {
    display: inline-block;
    background-color: #FF9900;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 20px 0;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #E68A00;
    text-decoration: none;
}

/* 1. Quick Product Finder Section */
.product-finder {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.finder-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.finder-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.finder-option {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finder-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.finder-option h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.finder-button {
    display: inline-block;
    background-color: #4a6cf7;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.finder-button:hover {
    background-color: #3a57d7;
}

.finder-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.finder-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #764ba2;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 2. Top Rated Models / Editor's Picks */
.top-rated {
    padding: 40px 0;
}

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

.top-rated-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top-rated-card:hover {
    transform: translateY(-8px);
}

.award-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff9a44 0%, #fc6076 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
}

.top-rated-card .product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #f9f9f9;
    padding: 20px;
}

.top-rated-card h3 {
    padding: 0 20px;
    margin: 15px 0 5px;
    color: #2c3e50;
}

.top-rated-card .rating {
    padding: 0 20px;
    color: #f39c12;
    font-weight: 500;
    margin-bottom: 10px;
    animation: rating 1s ease-in-out;
}

@keyframes rating {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.highlight-list {
    list-style-type: none;
    padding: 0 20px;
    margin: 15px 0;
}

.highlight-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.highlight-list li:before {
    content: '\2713';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-tag {
    padding: 0 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 10px 0;
}

.view-button {
    display: inline-block;
    background-color: #4a6cf7;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: auto;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.view-button:hover {
    background-color: #3a57d7;
}

/* 3. Comparison Highlights */
.comparison-highlights {
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.comparison-table th {
    background-color: #4a6cf7;
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f0f4ff;
}

.comparison-table td:first-child {
    font-weight: 600;
    text-align: left;
}

.check {
    color: #4CAF50;
    font-weight: bold;
}

.x {
    color: #F44336;
    font-weight: bold;
}

.comparison-cta {
    text-align: center;
    margin-top: 30px;
}

/* 4. Buying Guide Preview */
.buying-guide {
    padding: 40px 0;
}

.guide-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
}

.guide-intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.guide-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.guide-factor {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.guide-factor h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.guide-factor p {
    font-size: 0.9rem;
}

.guide-button {
    display: inline-block;
    background-color: #4a6cf7;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 25px;
    transition: background-color 0.3s ease;
}

.guide-button:hover {
    background-color: #3a57d7;
}

.guide-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* 5. Trust Section / Why Us */
.trust-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.trust-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #f0f7ff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.8rem;
}

.trust-item h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonial styles */
.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 40px auto 0;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0 0 15px;
    position: relative;
}

.testimonial blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: #4a6cf7;
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.2;
}

.testimonial cite {
    font-weight: 600;
    color: #555;
}

/* Quiz Modal Styles */
.quiz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.quiz-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quiz-header h3 {
    margin: 0;
    color: #2c3e50;
}

.close-quiz {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
}

.quiz-progress {
    height: 6px;
    background-color: #f1f1f1;
    border-radius: 3px;
    margin-bottom: 25px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.quiz-option {
    background-color: #f5f7fa;
    border: 2px solid #e4e8f0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
}

.quiz-option:hover {
    border-color: #4a6cf7;
    background-color: #f0f4ff;
}

.quiz-option:active {
    transform: scale(0.98);
}

#quiz-results {
    display: none;
    text-align: center;
}

.result-card {
    background-color: #f5f7fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-card h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.result-card p {
    margin-bottom: 20px;
}

/* 404 Error Page Styles */
.error-page {
    text-align: center;
    padding: 40px 20px;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 40px 30px;
}

.error-page h1 {
    font-size: 2.5rem;
    color: #e47911;
    margin-bottom: 30px;
}

.robot-error-image {
    margin: 20px auto 30px;
    max-width: 250px;
}

.robot-error-image img {
    max-width: 100%;
    height: auto;
}

.error-message {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.error-suggestions {
    margin: 40px 0;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.error-suggestions h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.error-suggestions ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.error-suggestions a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.error-suggestions a:hover {
    color: #004080;
    text-decoration: underline;
}

.search-box {
    margin: 30px 0;
}

.search-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
}

.search-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: #004080;
}

.back-home {
    margin-top: 40px;
}

.back-home .cta-button {
    background-color: #e47911;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-block;
}

.back-home .cta-button:hover {
    background-color: #c45500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guide-container {
        grid-template-columns: 1fr;
    }
    
    .guide-image {
        order: -1;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .error-content {
        padding: 30px 20px;
    }
    
    .error-page h1 {
        font-size: 2rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form input {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    .search-button {
        border-radius: 6px;
        padding: 10px;
    }
}

/* Footer */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
}

/* ===== NEW STYLES FOR SEO & CONVERSION IMPROVEMENTS ===== */

/* Hero Stats Styling */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-stats span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-stats strong {
    font-weight: 700;
    font-size: 1.1em;
}

/* FAQ Section Styling */
.faq-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    margin: 50px 0;
    border-radius: 15px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-item strong {
    color: #3498db;
    font-weight: 600;
}

/* Urgency Banner Styling */
.urgency-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Price Alerts Section */
.price-alerts {
    background: #f8f9fa;
    padding: 30px 0;
    margin: 30px 0;
    border-radius: 10px;
}

.alert-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #27ae60;
}

.alert-box h3 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.deal-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #27ae60;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.new-price {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1em;
    margin-right: 8px;
}

.savings {
    color: #e74c3c;
    font-weight: 500;
    font-size: 0.9em;
}

/* Deal Badges on Product Cards */
.deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

/* Price Info on Product Cards */
.price-info {
    margin: 10px 0;
    font-size: 1.1rem;
}

.current-price {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2em;
    margin-right: 10px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
}

/* Enhanced CTA Buttons */
.btn.cta-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn.cta-btn:hover {
    background: linear-gradient(45deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Buying Guide Section Styling */
.buying-guide-section {
    background: white;
    padding: 50px 0;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.buying-guide-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
}

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

.guide-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.guide-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.factor-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.factor-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.factor-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.factor-card li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
    line-height: 1.5;
}

.factor-card li:last-child {
    border-bottom: none;
}

.factor-card strong {
    color: #3498db;
    font-weight: 600;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stats span {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-factors {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .buying-guide-section h2 {
        font-size: 1.8rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .faq-item, .factor-card {
        padding: 20px;
    }
    
    .deal-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Pricing Disclaimer Styling */
.pricing-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px 0;
    margin: 20px 0;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.disclaimer-box p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.disclaimer-box strong {
    color: #b8860b;
    font-weight: 600;
}

/* Responsive Design for New Elements */
