:root {
            --primary-color: #1a472a;
            --secondary-color: #2d5a3d;
            --accent-color: #d4af37;
            --text-dark: #1a1a1a;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-dark);
        }
        
        .navbar {
            background-color: var(--primary-color);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .hero-section p {
            font-size: 1.25rem;
            opacity: 0.95;
        }
        
        .comparison-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .comparison-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            transform: translateY(-4px);
        }
        
        .brand-logo {
            max-width: 200px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 1.5rem;
        }
        
        .bonus-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            margin: 1rem 0;
        }
        
        .rating-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
        }
        
        .score-display {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stars {
            color: var(--accent-color);
            font-size: 1.5rem;
        }
        
        .reviews-count {
            color: #666;
            font-size: 0.95rem;
        }
        
        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .cta-button:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: scale(1.05);
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 3rem 0 2rem 0;
            text-align: center;
        }
        
        .evaluation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .evaluation-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .evaluation-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .content-section {
            padding: 3rem 0;
        }
        
        .content-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem 0;
            margin-top: 4rem;
        }
        
        .disclaimer {
            background-color: #2a2a2a;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .authority-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        
        .authority-badge {
            max-width: 100px;
            height: auto;
            opacity: 0.9;
        }
        
        .footer-links {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        :root {
            --primary-color: #1a472a;
            --secondary-color: #2d5a3d;
            --accent-color: #d4af37;
            --text-dark: #1a1a1a;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-dark);
        }
        
        .navbar {
            background-color: var(--primary-color);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .page-header {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        
        .content-section {
            padding: 3rem 0;
        }
        
        .content-section h2 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .content-section h3 {
            color: var(--secondary-color);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 2rem 0;
            margin-top: 4rem;
        }
        
        .footer-links {
            text-align: center;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }