/* ==========================================
   KRANKENZUSATZVERSICHERUNG.AT - STYLES
   ========================================== */

:root {
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --primary-light: #CCFBF1;
    --primary-pale: #F0FDFA;
    --text: #1E293B;
    --text-light: #64748B;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 47px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-sub {
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Navigation */
.nav {
    display: flex;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--primary);
    background: var(--primary-light);
    text-decoration: none;
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 200;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.15s;
}

.nav-dropdown a:hover {
    background: var(--primary-pale);
    color: var(--primary);
    text-decoration: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    padding: 4rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.check-item:last-child {
    border-bottom: none;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 4rem 2rem;
}

.section-alt {
    background: var(--bg-soft);
}

.section-header {
    margin-bottom: 2.5rem;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ==========================================
   VERSICHERUNGSARTEN CARDS (Final Design)
   ========================================== */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.insurance-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    padding-left: 1.5rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
}

.insurance-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 3px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
    transition: all 0.3s ease;
}

.insurance-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.12);
    transform: translateY(-4px);
    text-decoration: none;
}

.insurance-card:hover::before {
    top: 0.75rem;
    bottom: 0.75rem;
    width: 4px;
}

.insurance-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.insurance-card:hover h3 {
    color: var(--primary);
}

.insurance-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ==========================================
   BEHANDLUNGEN CARDS
   ========================================== */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.treatment-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.treatment-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.treatment-card:hover {
    background: var(--primary-pale);
    border-color: var(--primary-light);
    padding-left: 1.75rem;
    text-decoration: none;
}

.treatment-card:hover::after {
    transform: scaleY(1);
}

.treatment-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

.treatment-card span {
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.treatment-card:hover span {
    transform: translateX(4px);
}

/* ==========================================
   ZIELGRUPPEN CARDS
   ========================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.target-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.target-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transition: all 0.5s;
}

.target-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
    text-decoration: none;
}

.target-card:hover::before {
    top: -30%;
    right: -30%;
}

.target-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.target-card p {
    font-size: 0.875rem;
    opacity: 0.85;
    position: relative;
    line-height: 1.5;
}

/* ==========================================
   RATGEBER CARDS
   ========================================== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.guide-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.guide-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.guide-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.guide-card:hover::before {
    transform: scaleX(1);
}

.guide-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--text);
    transition: color 0.2s;
}

.guide-card:hover h3 {
    color: var(--primary);
}

.guide-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
    flex-grow: 1;
}

.guide-card .link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.guide-card .link::after {
    content: '→';
    transition: transform 0.2s;
}

.guide-card:hover .link::after {
    transform: translateX(4px);
}

/* ==========================================
   ANBIETER CARDS
   ========================================== */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.provider-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 1rem 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
}

.provider-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
    text-decoration: none;
}

/* ==========================================
   BUNDESLÄNDER CARDS
   ========================================== */
.region-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.75rem;
}

.region-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.region-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
    text-decoration: none;
}

/* ==========================================
   KOSTEN SECTION
   ========================================== */
.cost-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cost-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cost-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.cost-inner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cost-inner > div:first-child p {
    opacity: 0.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cost-inner .btn {
    background: white;
    color: var(--primary);
}

.cost-inner .btn:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
}

.cost-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cost-link {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.cost-link:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.3);
    text-decoration: none;
    color: white;
}

.cost-link h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.cost-link p {
    font-size: 0.875rem;
    opacity: 0.75;
    margin: 0;
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    padding: 1rem 2rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

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

.breadcrumb span {
    margin: 0 0.5rem;
}

/* ==========================================
   CONTENT PAGE
   ========================================== */
.content-page {
    padding: 3rem 2rem 4rem;
}

.content-page .container {
    max-width: 800px;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.content-page h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

.content-page h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text);
}

.content-page p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.7;
}

.content-page ul,
.content-page ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Info Box - Internal Links */
.info-box {
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--primary-light) 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 0.4rem 0;
    margin: 0;
}

.info-box ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.info-box ul li a:hover {
    color: var(--primary);
}

.info-box ul li a::before {
    content: "→ ";
    color: var(--primary);
}

/* External Links Box - Weiterführende Links */
.external-links-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    max-width: 480px;
    font-size: 0.875rem;
}

.external-links-box h3 {
    color: #b45309;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.external-links-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.external-links-box ul li {
    padding: 0.25rem 0;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.external-links-box ul li a {
    color: #78350f;
    text-decoration: none;
    transition: color 0.2s;
}

.external-links-box ul li a:hover {
    color: #b45309;
    text-decoration: underline;
}

.external-links-box ul li a::before {
    content: "↗ ";
    color: #f59e0b;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-soft);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Highlight Box */
.highlight-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box strong {
    color: #92400e;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-soft);
}

.comparison-table tr:hover {
    background: var(--primary-pale);
}

/* Price Box */
.price-box {
    background: var(--primary-pale);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.price-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-box .price-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-main {
    color: white;
}

.footer-brand .logo-sub {
    color: #94a3b8;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer ul a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #64748B;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #64748B;
    text-decoration: none;
    margin-left: 1.5rem;
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .provider-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .region-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .cost-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: 280px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 0.9rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .region-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom a {
        margin-left: 0;
        margin-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-links {
        grid-template-columns: 1fr;
    }
    
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .provider-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Cookie Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem 0;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table thead {
    background: var(--primary);
    color: white;
}

.cookie-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--bg-soft);
}

@media (max-width: 768px) {
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 12px;
    }
}
