:root {
            --primary: #0056b3;
            --secondary: #00a0e9;
            --accent: #ffc107;
            --dark: #333;
            --light: #f8f9fa;
            --light-blue: #e6f7ff;
            --light-yellow: #fff8e6;
            --success: #28a745;
            --danger: #dc3545;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--primary);
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            margin-left: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .provider-hero {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 60px 0;
        }
        
        .provider-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        
        .provider-hero-text {
            flex: 1 1 500px;
        }
        
        .provider-hero-text h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .provider-hero-text p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .provider-hero-card {
            flex: 0 1 380px;
            background: white;
            border-radius: 12px;
            padding: 30px;
            color: var(--dark);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        
        .provider-hero-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .feature-item {
            text-align: center;
            padding: 10px;
            background: var(--light-gray);
            border-radius: 8px;
        }

        .feature-item-wide {
            grid-column: 1 / -1;
        }
        
        .feature-item .value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .feature-item .label {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .provider-example-note {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.45;
            margin: -5px 0 18px;
            padding: 12px;
            background: var(--light-yellow);
            border-left: 4px solid var(--accent);
            border-radius: 4px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: var(--accent);
            color: var(--dark);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        /* Sections */
        section {
            padding: 60px 0;
        }
        
        .bg-alt {
            background-color: var(--light-blue);
        }
        
        .bg-light {
            background-color: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--primary);
        }

        .provider-kicker {
            display: inline-block;
            color: var(--gray);
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }

        .provider-section-intro {
            max-width: 820px;
            margin: -20px auto 32px;
            text-align: center;
            color: var(--gray);
        }

        .provider-trust-strip {
            background: white;
            padding: 18px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .provider-trust-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .provider-trust-item {
            padding: 14px 16px;
            border-radius: 8px;
            background: var(--light);
            border: 1px solid var(--light-gray);
        }

        .provider-trust-item span {
            display: block;
            color: var(--gray);
            font-size: 0.82rem;
            margin-bottom: 5px;
        }

        .provider-trust-item strong {
            display: block;
            color: var(--dark);
            font-size: 0.96rem;
            line-height: 1.35;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .about-content p {
            margin-bottom: 20px;
        }

        /* Pros & Cons */
        .pros-cons {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .pros, .cons {
            flex: 1 1 350px;
            max-width: 450px;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .pros h3, .cons h3 {
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.3rem;
        }
        
        .pros h3 { color: var(--success); }
        .cons h3 { color: var(--danger); }
        
        .pros ul, .cons ul {
            list-style: none;
            padding: 0;
        }
        
        .pros li, .cons li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .pros li:last-child, .cons li:last-child {
            border-bottom: none;
        }
        
        .pros li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        .cons li::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: var(--danger);
            font-weight: bold;
        }

        /* Requirements */
        .requirements-list {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .requirements-list ul {
            list-style: none;
            padding: 0;
        }
        
        .requirements-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .requirements-list li:last-child {
            border-bottom: none;
        }
        
        .requirements-list li::before {
            content: "📌";
            position: absolute;
            left: 0;
        }

        /* Steps */
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            counter-reset: step;
        }
        
        .step {
            flex: 1 1 220px;
            max-width: 280px;
            background: white;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .step h3 {
            margin-top: 15px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .step p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* FAQ */
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 18px 20px;
            background: var(--light-gray);
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: #dde4ea;
        }
        
        .faq-answer {
            padding: 18px 20px;
            display: none;
            border-top: 1px solid var(--light-gray);
            line-height: 1.7;
        }

        .provider-related-link {
            background: white;
        }

        .provider-related-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 28px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            background: var(--light);
        }

        .provider-related-box h2 {
            margin: 4px 0 10px;
            color: var(--primary);
            font-size: 1.55rem;
        }

        .provider-related-box p {
            max-width: 720px;
            color: var(--gray);
        }

        .provider-related-cards {
            display: grid;
            grid-template-columns: repeat(2, minmax(180px, 1fr));
            gap: 12px;
            min-width: min(440px, 100%);
        }

        .provider-related-card {
            display: block;
            padding: 16px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            background: white;
            color: var(--dark);
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .provider-related-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }

        .provider-related-card span {
            display: block;
            margin-bottom: 6px;
            color: var(--primary);
            font-weight: 700;
        }

        .provider-related-card small {
            display: block;
            color: var(--gray);
            line-height: 1.45;
        }

        .provider-source-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .provider-source-card {
            background: white;
            border-radius: 8px;
            padding: 24px;
            border-top: 4px solid var(--secondary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }

        .provider-source-card-single {
            max-width: 760px;
            margin: 0 auto;
        }

        .provider-source-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .provider-source-card a {
            color: var(--primary);
            text-decoration: none;
        }

        .provider-source-card a:hover {
            text-decoration: underline;
        }

        .provider-source-card p {
            margin-bottom: 8px;
        }

        .provider-editorial {
            background: white;
        }

        .provider-editorial-box {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 30px;
            align-items: start;
            padding: 32px;
            border-radius: 8px;
            border: 1px solid var(--light-gray);
            background: var(--light);
        }

        .provider-editorial-box h2 {
            color: var(--primary);
            margin-bottom: 12px;
        }

        .provider-editorial-list {
            display: grid;
            gap: 14px;
            margin: 0;
        }

        .provider-editorial-list div {
            display: grid;
            grid-template-columns: 160px minmax(0, 1fr);
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .provider-editorial-list div:last-child {
            border-bottom: 0;
        }

        .provider-editorial-list dt {
            color: var(--gray);
            font-weight: 700;
        }

        .provider-editorial-list dd {
            margin: 0;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 60px 20px;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .cta-section .btn {
            font-size: 1.1rem;
            padding: 16px 40px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0;
        }
        
        footer a {
            color: var(--accent);
            text-decoration: none;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            margin: 0 15px;
            color: white;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            background: var(--light-gray);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        
        .breadcrumbs a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumbs span {
            color: var(--gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                padding: 15px 0;
            }
            
            .hamburger {
                display: flex;
                flex-direction: column;
                cursor: pointer;
                gap: 5px;
            }
            
            .hamburger span {
                width: 25px;
                height: 3px;
                background-color: var(--primary);
                border-radius: 2px;
                transition: 0.3s;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }

            nav {
                width: 100%;
                display: none;
                order: 3;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                margin-top: 15px;
                width: 100%;
            }
            
            nav ul li {
                margin: 0;
                margin-bottom: 10px;
                border-bottom: 1px solid var(--light-gray);
                padding-bottom: 10px;
            }
            
            .provider-hero-text h1 {
                font-size: 1.8rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.6rem;
            }

            .provider-trust-grid,
            .provider-source-grid,
            .provider-editorial-box {
                grid-template-columns: 1fr;
            }

            .provider-editorial-list div {
                grid-template-columns: 1fr;
                gap: 4px;
            }

            .provider-related-box {
                flex-direction: column;
                align-items: flex-start;
            }

            .provider-related-cards {
                grid-template-columns: 1fr;
                min-width: 0;
            }
        }
