* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav a, .header-actions a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav a:hover, .header-actions a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Main Content */
.main {
    padding: 2rem 0;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

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

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

.page-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.page-date {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Products List */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 3px solid #ffd700;
    background: linear-gradient(to bottom, #fffef7, white);
}

.product-card.best-value {
    border: 3px solid #48bb78;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.product-badge.top-product {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.product-badge.value-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.product-badge.free-shipping {
    position: static;
    display: inline-block;
    background: #48bb78;
    margin-bottom: 0.5rem;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.product-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
}

.product-rating {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.rating-value {
    font-size: 2rem;
    font-weight: bold;
    color: #2d3748;
}

.rating-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 600;
}

.product-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto 1.5rem;
    text-align: center;
    background: #f7fafc;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.product-chosen {
    color: #48bb78;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-features {
    margin: 1.5rem 0;
}

.product-features h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    color: #4a5568;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-features li strong {
    color: #2d3748;
}

.btn-amazon {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
}

.btn-amazon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
}

.product-more {
    margin-top: 1rem;
    color: #718096;
    font-size: 0.9rem;
}

/* Why Trust Section */
.why-trust-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.why-trust-title {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.why-trust-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.info-box-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.test-title {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.test-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.test-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.test-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Content Section Styles for Info Pages */
.content-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 2rem;
    line-height: 1.8;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-section p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-section a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.content-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.content-section em {
    color: #718096;
    font-style: italic;
}

/* Contact List */
.contact-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.contact-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.contact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Info */
.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info strong {
    color: #2d3748;
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
}

.faq-section h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-section p {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #e2e8f0;
}

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

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-nav {
    margin: 2rem 0;
}

.footer-nav h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-nav a:hover {
    color: white;
}

.footer-disclosure {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-disclosure p {
    margin-bottom: 1rem;
}

.footer-disclosure strong {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-number {
        font-size: 2rem;
    }

    .rating-value {
        font-size: 1.5rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-image-wrapper {
        max-width: 100%;
        padding: 0.5rem;
    }

    .product-image {
        max-width: 100%;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .why-trust-section {
        padding: 2rem 1.5rem;
    }

    .why-trust-title {
        font-size: 1.5rem;
    }

    .why-trust-text {
        font-size: 1rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }
}

