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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* Header & Navigation */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Disclosure Banner */
.disclosure-banner {
    background-color: #fef3c7;
    border-bottom: 2px solid #fbbf24;
    padding: 1rem 0;
}

.disclosure-banner p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
}

.disclosure-banner a {
    color: #92400e;
    font-weight: 600;
    text-decoration: underline;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.reviews-section h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
}

/* Sort Controls */
.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--bg-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sort-controls label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    white-space: nowrap;
}

.sort-dropdown {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    min-width: 180px;
}

.sort-dropdown:hover {
    border-color: var(--primary-color);
}

.sort-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.vpn-grid {
    display: grid;
    gap: 2rem;
}

/* VPN Card */
.vpn-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vpn-card.highlight {
    border: 3px solid #f59e0b;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.vpn-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.vpn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Compact Card Layout */
.vpn-main-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.vpn-left-section {
    flex: 1;
    min-width: 0;
}

.vpn-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.vpn-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #f7fafc;
    padding: 0.5rem;
    flex-shrink: 0;
}

.vpn-title-section {
    flex: 1;
}

.vpn-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.deal-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 10;
    animation: dealPulse 2s infinite, dealFloat 3s ease-in-out infinite;
    white-space: nowrap;
}

/* Variant colors for different deal types */
.vpn-card:has(.deal-badge:contains("BEST VALUE")) .deal-badge,
.deal-badge.best-value {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.vpn-card:has(.deal-badge:contains("FLASH SALE")) .deal-badge,
.deal-badge.flash-sale {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.vpn-card:has(.deal-badge:contains("HOT DEAL")) .deal-badge,
.deal-badge.hot-deal {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.deal-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 4px;
}

.deal-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #dc2626;
    filter: brightness(0.8);
}

@keyframes dealPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    }
}

@keyframes dealFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.best-for {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-number {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
}

.vpn-description {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vpn-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
}

.feature-item::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: 700;
}

.vpn-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Price Section - Compact */
.vpn-price-section {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    min-width: 180px;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ef4444;
    display: block;
    margin: 0.25rem 0;
}

.savings {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.bonus-text {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.urgency-text {
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* CTA Section - Right Side */
.vpn-cta-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 160px;
    align-items: stretch;
}

.affiliate-button {
    display: block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    border: none;
    cursor: pointer;
}

.affiliate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.money-back {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Hidden elements for compact view */
.pros-cons {
    display: none;
}

/* Why VPN Section */
.why-vpn {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.why-vpn h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--bg-light);
    transition: transform 0.3s;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
}

/* Latest Articles Section */
.latest-articles {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.latest-articles .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.latest-articles h2 {
    font-size: 2.25rem;
    margin: 0;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.view-all-link:hover {
    text-decoration: underline;
}

.articles-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.article-preview-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.article-preview-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-preview-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-preview-card h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.article-preview-card h3 a:hover {
    color: var(--primary-color);
}

.article-preview-summary {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-color);
}

.article-preview-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-preview-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.article-preview-link:hover {
    text-decoration: underline;
}

/* How We Review Section */
.how-we-review {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.how-we-review h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.how-we-review > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.review-criteria {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.review-criteria li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.review-criteria strong {
    color: var(--primary-color);
}

.criteria-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page .last-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .vpn-card {
        flex-direction: column;
        align-items: stretch;
    }

    .vpn-main-content {
        flex-direction: column;
    }

    .vpn-price-section {
        min-width: auto;
    }

    .vpn-cta-section {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .reviews-header {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-controls {
        justify-content: space-between;
    }

    .sort-dropdown {
        min-width: auto;
        flex: 1;
    }

    .vpn-card {
        padding: 1.25rem;
    }

    .vpn-card h3 {
        font-size: 1.25rem;
    }

    .affiliate-button {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .vpn-card {
        padding: 1rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .vpn-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .deal-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        top: -6px;
        right: 10px;
    }

    .deal-badge::after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #dc2626;
        bottom: -5px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--bg-color);
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-light);
    position: sticky;
    top: 0;
    right: 0;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    padding: 1rem;
    line-height: 1;
    transition: color 0.3s;
    float: right;
    background-color: var(--bg-color);
    z-index: 10;
    border-radius: 0 12px 0 0;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem 1rem 2rem;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 9;
    padding-top: 4rem;
    margin-top: -3rem;
}

.modal-vpn-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background: #f7fafc;
    padding: 0.75rem;
    flex-shrink: 0;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: var(--text-color);
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.modal-section p {
    color: var(--text-color);
    line-height: 1.8;
}

.modal-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.modal-pros h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-cons h3 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.modal-pros ul,
.modal-cons ul {
    list-style: none;
    padding: 0;
}

.modal-pros li,
.modal-cons li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.modal-pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.modal-cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background-color: var(--bg-color);
    border-top: 2px solid var(--border-color);
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 9;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.modal-price-info {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
    display: inline-block;
}

.modal-footer .affiliate-button {
    display: inline-block;
    margin-bottom: 0;
    font-size: 1.25rem;
    padding: 1.125rem 2.5rem;
    animation: ctaPulse 2s infinite;
}

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

/* Review Button on Cards */
.review-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 0.5rem;
}

.review-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-close {
        border-radius: 0;
    }

    .modal-header {
        padding: 0 1.5rem 1rem 1.5rem;
        padding-top: 4rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        padding: 1.25rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-price {
        font-size: 1.5rem;
    }

    .modal-price-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-footer .affiliate-button {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}


        .articles-section {
            padding: 3rem 0;
        }

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

        .article-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

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

        .article-content {
            padding: 1.5rem;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .article-category {
            background: #667eea;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-weight: 600;
        }

        .article-date {
            color: #718096;
        }

        .article-content h3 {
            margin-bottom: 0.75rem;
        }

        .article-content h3 a {
            color: #2d3748;
            text-decoration: none;
        }

        .article-content h3 a:hover {
            color: #667eea;
        }

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

        .read-more {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }