/* ============================================
   INFOGRAPHIC STYLE - closjean.fr
   Colors: White + Blue + Orange + Green
   Analytical, Professional, Data-focused
   ============================================ */

/* КРИТИЧНО: Защита от горизонтального скролла */
* {
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}

/* CSS Variables */
:root {
    --header-height: 55px; /* Десктоп */
    
    /* Infographic Color Palette */
    --primary-blue: #2563eb; /* Синий */
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --accent-orange: #f97316; /* Оранжевый */
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --accent-green: #10b981; /* Зеленый */
    --accent-green-light: #34d399;
    --accent-green-dark: #059669;
    --bg-white: #ffffff; /* Белый */
    --bg-light: #f8fafc;
    --bg-gray: #e2e8f0;
    --text-dark: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

@media (max-width: 600px) {
    :root {
        --header-height: 50px; /* ОБЯЗАТЕЛЬНО для мобильных! */
    }
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary-blue);
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    color: var(--primary-blue-dark);
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-blue);
    background: var(--bg-light);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    position: absolute;
    top: 50%;
    right: var(--spacing-md);
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* КРИТИЧЕСКИ ВАЖНО! Бургер-меню БЕЗ засвета */
.nav-menu {
    position: fixed;
    top: calc(var(--header-height) - 1px); /* ИМЕННО ТАК! С -1px! */
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary-blue);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.nav-menu.active {
    max-height: 400px;
}

.nav-menu ul {
    list-style: none;
    padding: var(--spacing-md);
    margin: 0;
}

.nav-menu li {
    margin-bottom: var(--spacing-sm);
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
}

.nav-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-casino {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-casino {
    background: var(--accent-green);
    color: white;
    width: 100%;
    text-align: center;
    margin-top: var(--spacing-md);
}

.btn-casino:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Casinos Section */
.casinos {
    background: white;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.casino-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.casino-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--bg-gray);
}

.casino-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.rating-stars {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.rating-score {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.casino-bonus {
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--accent-green);
}

.casino-bonus strong {
    color: var(--text-dark);
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.casino-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Latest Articles Section */
.latest-articles {
    background: white;
}

.articles-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.article-preview-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-preview-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.article-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.article-preview-content h3 {
    margin: var(--spacing-sm) 0;
}

.article-preview-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.article-preview-content h3 a:hover {
    color: var(--primary-blue);
}

.article-preview-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.article-read-more {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.article-read-more:hover {
    color: var(--accent-orange-dark);
}

.articles-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: var(--spacing-lg) 0;
    border-top: 3px solid var(--accent-orange);
    border-bottom: 3px solid var(--accent-orange);
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content p {
    margin: var(--spacing-sm) 0;
    line-height: 1.8;
}

.disclaimer-content a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.disclaimer-content a:hover {
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.compliance-logos {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.age-section {
    margin-bottom: var(--spacing-sm);
}

.age-restriction {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
}

.compliance-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: var(--spacing-sm);
}

.compliance-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.compliance-logo-link:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.compliance-logo {
    height: 28px !important;
    width: auto !important;
    max-width: 100px !important;
    object-fit: contain;
}

/* Серый цвет для французских регуляторов и Gambling Therapy */
.compliance-logo[src*="logo-anj.svg"],
.compliance-logo[src*="logo-juegos_info_service.svg"],
.compliance-logo[src*="logo-mediateurdesjeuxenligne.svg"],
.compliance-logo[src*="logo-gamblingtherapy.svg"] {
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.8;
}

.help-resources {
    margin-top: var(--spacing-md);
}

.help-resources p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Age Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-popup.hidden {
    display: none;
}

.age-popup-content {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-popup-content h2 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.age-popup-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.age-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.btn-secondary {
    background: var(--bg-gray);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-accept {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--primary-blue-dark);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .benefits-grid,
    .casinos-grid,
    .articles-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .compliance-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compliance-logo {
        height: 24px !important;
        max-width: 85px !important;
    }
    
    .compliance-logo-link {
        padding: 5px;
    }
}

@media (max-width: 900px) {
    .benefits-grid,
    .casinos-grid,
    .articles-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 900px) {
    .benefits-grid,
    .casinos-grid,
    .articles-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Account Page Styles */
.account-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.tabs {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.tab-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tab-button:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.tab-button.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.tab-content {
    display: none;
    max-width: 600px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
}

.form-container {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.checkbox-label {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.checkbox-label span {
    color: var(--text-secondary);
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    margin-top: var(--spacing-md);
}

.form-footer .link {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-footer .link:hover {
    text-decoration: underline;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-info {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border-color);
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.contact-details {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}

.contact-details strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
    }
}

/* Page Hero Styles */
.page-hero {
    padding-top: 140px;
    min-height: 40vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.95;
    margin-top: var(--spacing-md);
}

.page-content {
    padding: var(--spacing-xl) 0;
    background: white;
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 120px;
    }
}
