﻿
        /* ===== CSS Reset & Base ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: #f8f6f1;
            color: #2d2d2d;
            line-height: 1.7;
            font-size: 16px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
            color: #1a2332;
            line-height: 1.25;
        }
        a { color: #1a2332; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #d4a853; }
        img { max-width: 100%; height: auto; }
        .logo img { height: 40px !important; width: auto !important; max-height: 40px !important; display: block !important; object-fit: contain; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== Navigation ===== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(248, 246, 241, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e0ddd5;
        }
        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: #1a2332;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-img {
            height: 40px !important;
            width: auto !important;
            display: block !important;
            max-height: 40px !important;
            object-fit: contain;
            vertical-align: middle;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: #4a4a4a;
        }
        .nav-links a:hover { color: #d4a853; }
        .nav-cta {
            background-color: #1a2332;
            color: #f8f6f1;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.2s;
        }
        .nav-cta:hover { background-color: #d4a853; color: #1a2332; }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: #1a2332;
            margin: 5px 0;
            transition: 0.3s;
        }

        /* ===== Hero Section ===== */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 1px solid #e0ddd5;
        }
        .hero-eyebrow {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #d4a853;
            margin-bottom: 20px;
        }
        .hero h1 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 900;
            margin-bottom: 24px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero h1 em {
            font-style: normal;
            color: #d4a853;
        }
        .hero-subtitle {
            font-size: 19px;
            color: #5a5a5a;
            max-width: 640px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: #1a2332;
        }
        .hero-stat-label {
            font-size: 13px;
            color: #5a5a5a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== Niche Categories ===== */
        .niches {
            padding: 72px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-eyebrow {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #d4a853;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            margin-bottom: 16px;
        }
        .section-subtitle {
            font-size: 17px;
            color: #5a5a5a;
            max-width: 600px;
            margin: 0 auto;
        }
        .niche-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .niche-card {
            background-color: #ffffff;
            border: 1px solid #e0ddd5;
            border-radius: 12px;
            padding: 32px;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            overflow: hidden;
        }
        .niche-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(26, 35, 50, 0.1);
        }
        .niche-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background-color: #d4a853;
        }
        .niche-icon {
            width: 48px;
            height: 48px;
            background-color: #1a2332;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .niche-icon svg {
            width: 24px;
            height: 24px;
            stroke: #d4a853;
            fill: none;
            stroke-width: 2;
        }
        .niche-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .niche-card p {
            font-size: 15px;
            color: #5a5a5a;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .niche-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #1a2332;
        }
        .niche-link:hover { color: #d4a853; }
        .niche-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
        }
        .niche-link:hover svg { transform: translateX(4px); }

        /* ===== Featured Review ===== */
        .featured-review {
            padding: 72px 0;
            background-color: #ffffff;
            border-top: 1px solid #e0ddd5;
            border-bottom: 1px solid #e0ddd5;
        }
        .review-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #d4a853;
            color: #1a2332;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .review-header {
            margin-bottom: 48px;
        }
        .review-header h2 {
            font-size: clamp(30px, 4.5vw, 44px);
            font-weight: 900;
            margin-bottom: 16px;
            max-width: 800px;
        }
        .review-meta {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #5a5a5a;
        }
        .review-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .review-intro {
            font-size: 18px;
            line-height: 1.8;
            color: #3a3a3a;
            margin-bottom: 40px;
            max-width: 800px;
        }
        .review-intro p { margin-bottom: 20px; }

        /* ===== Comparison Table ===== */
        .comparison-table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border: 1px solid #e0ddd5;
            border-radius: 12px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 700px;
        }
        .comparison-table th {
            background-color: #1a2332;
            color: #f8f6f1;
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .comparison-table td {
            padding: 14px 16px;
            border-bottom: 1px solid #e0ddd5;
            vertical-align: top;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #faf9f6;
        }
        .comparison-table tr:hover {
            background-color: #f0ede5;
        }
        .comparison-table .tool-name {
            font-weight: 700;
            color: #1a2332;
            font-size: 15px;
        }
        .comparison-table .editor-choice {
            display: inline-block;
            background-color: #d4a853;
            color: #1a2332;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: 8px;
            text-transform: uppercase;
        }
        .price-tag {
            font-weight: 600;
            color: #1a2332;
        }
        .check-mark { color: #2d7a4f; font-weight: 700; }
        .cross-mark { color: #b04040; font-weight: 700; }

        /* ===== Tool Review Cards ===== */
        .tool-reviews {
            margin: 56px 0;
        }
        .tool-review {
            background-color: #faf9f6;
            border: 1px solid #e0ddd5;
            border-radius: 12px;
            padding: 36px;
            margin-bottom: 32px;
            position: relative;
        }
        .tool-review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 16px;
        }
        .tool-review-title {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .tool-rank {
            width: 44px;
            height: 44px;
            background-color: #1a2332;
            color: #d4a853;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .tool-review-title h3 {
            font-size: 26px;
            font-weight: 700;
        }
        .tool-score {
            text-align: center;
            flex-shrink: 0;
        }
        .score-number {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 900;
            color: #d4a853;
        }
        .score-label {
            font-size: 11px;
            color: #5a5a5a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tool-tagline {
            font-size: 16px;
            color: #5a5a5a;
            font-style: italic;
            margin-bottom: 20px;
            padding-left: 12px;
            border-left: 3px solid #d4a853;
        }
        .tool-pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .pros-list, .cons-list {
            list-style: none;
        }
        .pros-list li, .cons-list li {
            padding: 8px 0;
            font-size: 14px;
            line-height: 1.5;
            display: flex;
            gap: 8px;
        }
        .pros-list li::before {
            content: '+';
            color: #2d7a4f;
            font-weight: 700;
            flex-shrink: 0;
        }
        .cons-list li::before {
            content: '-';
            color: #b04040;
            font-weight: 700;
            flex-shrink: 0;
        }
        .pros-label, .cons-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .pros-label { color: #2d7a4f; }
        .cons-label { color: #b04040; }
        .tool-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #1a2332;
            color: #f8f6f1;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            transition: background-color 0.2s;
            margin-top: 16px;
        }
        .tool-cta:hover { background-color: #d4a853; color: #1a2332; }
        .tool-cta svg {
            width: 18px;
            height: 18px;
        }

        /* ===== Buying Guide ===== */
        .buying-guide {
            margin: 56px 0;
        }
        .buying-guide h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }
        .guide-card {
            background-color: #faf9f6;
            border: 1px solid #e0ddd5;
            border-radius: 10px;
            padding: 24px;
        }
        .guide-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .guide-card h4::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: #d4a853;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .guide-card p {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq-section {
            margin: 56px 0;
        }
        .faq-section h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 32px;
        }
        .faq-item {
            border-bottom: 1px solid #e0ddd5;
            padding: 20px 0;
        }
        .faq-question {
            font-size: 17px;
            font-weight: 600;
            color: #1a2332;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .faq-question:hover { color: #d4a853; }
        .faq-question svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-answer p {
            padding-top: 16px;
            font-size: 15px;
            color: #5a5a5a;
            line-height: 1.7;
        }

        /* ===== Newsletter ===== */
        .newsletter {
            padding: 72px 0;
            background-color: #1a2332;
            color: #f8f6f1;
        }
        .newsletter-inner {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .newsletter h2 {
            color: #f8f6f1;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 16px;
        }
        .newsletter p {
            font-size: 16px;
            color: #d0d0d0;
            margin-bottom: 32px;
        }
        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }
        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: 1px solid #3a4a5e;
            border-radius: 8px;
            background-color: #243044;
            color: #f8f6f1;
            font-size: 15px;
            font-family: 'DM Sans', sans-serif;
        }
        .newsletter-input::placeholder { color: #a0b0c8; }
        .newsletter-input:focus {
            outline: none;
            border-color: #d4a853;
        }
        .newsletter-btn {
            background-color: #d4a853;
            color: #1a2332;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s;
            font-family: 'DM Sans', sans-serif;
        }
        .newsletter-btn:hover { background-color: #e0b868; }

        /* ===== Footer ===== */
        .footer {
            padding: 56px 0 32px;
            background-color: #151c28;
            color: #a0b0c8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(5, 1fr); gap: 32px;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .logo {
            color: #f8f6f1;
            margin-bottom: 16px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
        }
        .footer-column h4 {
            color: #f8f6f1;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-family: 'DM Sans', sans-serif;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #a0b0c8;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: #d4a853; }
        .footer-bottom {
            border-top: 1px solid #2a3548;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }
        .footer-disclaimer {
            max-width: 600px;
            font-size: 12px;
            line-height: 1.5;
            color: #6a7a90;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #f8f6f1;
                padding: 20px;
                border-bottom: 1px solid #e0ddd5;
                gap: 16px;
            }
            .hero { padding: 48px 0 40px; }
            .hero-stats { gap: 24px; }
            .hero-stat-number { font-size: 28px; }
            .tool-pros-cons { grid-template-columns: 1fr; }
            .newsletter-form { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
            .tool-review { padding: 24px; }
            .tool-review-header { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
            .niche-grid { grid-template-columns: 1fr; }
        }
    
        /* ===== Review & Comparison Pages ===== */
        .review-page, .comparison-page { padding: 40px 0 60px; }
        .review-article, .comparison-article { max-width: 860px; margin: 0 auto; }
        .review-header { text-align: center; padding: 40px 0 32px; border-bottom: 1px solid #e0ddd5; margin-bottom: 40px; }
        .review-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
        .review-header h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; }
        .review-tagline { font-size: 17px; color: #5a5a5a; max-width: 600px; margin: 0 auto 20px; }
        .rating-display { display: flex; align-items: center; justify-content: center; gap: 10px; }
        .rating-stars { color: #d4a853; font-size: 20px; letter-spacing: 2px; }
        .rating-score { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #1a2332; }
        .comparison-header { text-align: center; padding: 40px 0 32px; border-bottom: 1px solid #e0ddd5; margin-bottom: 40px; }
        .comparison-header h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; }
        .comparison-header h1 span { color: #d4a853; margin: 0 12px; }
        .comparison-subtitle { font-size: 17px; color: #5a5a5a; }
        .test-method { background: #f0f7ff; border-left: 4px solid #6366f1; padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 32px; font-size: 14px; color: #333; line-height: 1.6; }
        .test-method strong { color: #1a2332; }
        .review-article section, .comparison-article section { margin-bottom: 48px; }
        .review-article h2, .comparison-article h2 { font-size: 26px; font-weight: 800; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #d4a853; }
        .review-article h3, .comparison-article h3 { font-size: 20px; font-weight: 700; margin: 24px 0 12px; color: #1a2332; }
        .review-article p, .comparison-article p { margin-bottom: 16px; color: #3a3a3a; }
        .quick-verdict { background: #fff; border: 1px solid #e0ddd5; border-radius: 12px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .quick-verdict h2 { border-bottom: none; padding-bottom: 0; margin-bottom: 16px; }
        .score-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0ddd5; }
        .score-table th { background: #1a2332; color: #fff; padding: 12px 16px; text-align: left; font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
        .score-table td { padding: 12px 16px; border-bottom: 1px solid #eee; font-size: 14px; color: #333; }
        .score-table tr:last-child td { border-bottom: none; }
        .score-table tr:nth-child(even) td { background: #faf9f6; }
        .score-bar { background: #e0ddd5; border-radius: 4px; height: 8px; width: 100px; display: inline-block; vertical-align: middle; overflow: hidden; }
        .score-bar > div { background: linear-gradient(90deg, #6366f1, #818cf8); height: 100%; border-radius: 4px; }
        .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
        .pros, .cons { background: #fff; border: 1px solid #e0ddd5; border-radius: 10px; padding: 20px; }
        .pros { border-top: 3px solid #10b981; }
        .cons { border-top: 3px solid #ef4444; }
        .pros h3, .cons h3 { margin-top: 0; margin-bottom: 12px; font-size: 17px; }
        .pros ul, .cons ul { list-style: none; padding: 0; }
        .pros li, .cons li { padding: 6px 0; font-size: 14px; color: #444; line-height: 1.5; }
        .features-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
        .features-list li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; color: #444; }
        .features-list li:before { content: "*"; position: absolute; left: 0; color: #d4a853; font-size: 14px; top: 8px; font-weight: bold; }
        .pricing-table { width: 100%; border-collapse: collapse; margin: 16px 0; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0ddd5; }
        .pricing-table th { background: #1a2332; color: #fff; padding: 14px 16px; text-align: left; font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
        .pricing-table td { padding: 14px 16px; border-bottom: 1px solid #eee; font-size: 14px; color: #333; }
        .pricing-table tr:last-child td { border-bottom: none; }
        .pricing-table tr:nth-child(even) td { background: #faf9f6; }
        .pricing-table td:nth-child(2) { font-weight: 700; color: #1a2332; white-space: nowrap; }
        .choose-list { list-style: none; padding: 0; margin: 12px 0; }
        .choose-list li { padding: 8px 0 8px 28px; position: relative; font-size: 14px; color: #444; line-height: 1.5; }
        .choose-list li:before { content: "OK"; position: absolute; left: 0; color: #6366f1; font-weight: bold; font-size: 12px; top: 9px; }
        .faq-item { background: #fff; border: 1px solid #e0ddd5; border-radius: 10px; padding: 20px 24px; margin-bottom: 12px; }
        .faq-item h3 { margin-top: 0; margin-bottom: 8px; font-size: 16px; color: #1a2332; }
        .faq-item p { margin-bottom: 0; font-size: 14px; color: #555; line-height: 1.7; }
        .related-links { background: #faf9f6; border: 1px solid #e0ddd5; border-radius: 10px; padding: 24px; margin-top: 40px; }
        .related-links h3 { margin-top: 0; margin-bottom: 12px; font-size: 17px; }
        .related-links ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
        .related-links li a { display: inline-block; padding: 8px 16px; background: #fff; border: 1px solid #d0ccc2; border-radius: 20px; font-size: 13px; color: #1a2332; transition: all 0.2s; }
        .related-links li a:hover { background: #1a2332; color: #d4a853; border-color: #1a2332; }
        .verdict-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
        .verdict-card { background: #fff; border: 1px solid #e0ddd5; border-radius: 10px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .verdict-card h3 { margin-top: 0; font-size: 20px; }
        .verdict-card p { font-size: 14px; color: #555; margin-top: 12px; }
        .verdict-card .rating-display { justify-content: flex-start; margin: 8px 0; }
        .cost-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
        .cost-card { background: #fff; border: 1px solid #e0ddd5; border-radius: 10px; padding: 24px; text-align: center; }
        .cost-card h3 { margin-top: 0; font-size: 17px; color: #555; }
        .cost-card .cost { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: #1a2332; margin: 8px 0; }
        .cost-card .cost small { font-size: 16px; color: #888; font-weight: 400; }
        .cost-card .cost-annual { font-size: 14px; color: #888; margin-top: 4px; }
        .choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
        .choose-card { background: #fff; border: 1px solid #e0ddd5; border-radius: 10px; padding: 24px; }
        .choose-card h3 { margin-top: 0; font-size: 18px; }
        .choose-card .btn { display: inline-block; margin-top: 16px; padding: 10px 20px; background: #1a2332; color: #d4a853; border-radius: 6px; font-size: 14px; font-weight: 600; transition: all 0.2s; }
        .choose-card .btn:hover { background: #d4a853; color: #1a2332; }
        .detailed-breakdown ul { margin: 8px 0 20px 20px; }
        .detailed-breakdown li { padding: 4px 0; font-size: 14px; color: #444; }
        @media (max-width: 768px) {
            .pros-cons { grid-template-columns: 1fr; }
            .features-list { grid-template-columns: 1fr; }
            .verdict-cards { grid-template-columns: 1fr; }
            .cost-cards { grid-template-columns: 1fr; }
            .choose-grid { grid-template-columns: 1fr; }
            .quick-verdict { padding: 20px; }
            .review-header { padding: 24px 0 20px; }
        }
