:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-secondary: #c4a35a;
    --color-secondary-light: #d4b76a;
    --color-dark: #1a202c;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #f7f5f2;
    --color-bg-alt: #edf2f7;
    --color-white: #ffffff;
    --color-snow: #f8fafc;
    --color-mountain: #2b4c7e;
    --color-alpine: #567c8d;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Lora', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    box-shadow: var(--shadow-md);
    padding: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

.logo:hover {
    color: var(--color-secondary-light);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--color-secondary);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
    background: rgba(255,255,255,0.15);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    vertical-align: middle;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    margin-top: 5px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding-left: 25px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    transition: var(--transition);
}

.burger-menu:hover {
    background: rgba(255,255,255,0.2);
}

.burger-line {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    color: var(--color-white);
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(255,255,255,0.25);
}

.mobile-nav-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    top: 50%;
    left: 50%;
}

.mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 15px 25px;
    color: var(--color-text);
    font-weight: 500;
    border-bottom: 1px solid var(--color-bg-alt);
    transition: var(--transition);
}

.mobile-nav-list > li > a:hover {
    background: var(--color-bg-alt);
    padding-left: 30px;
    color: var(--color-primary);
}

.mobile-nav-section {
    padding: 10px 0;
}

.mobile-nav-section-title {
    display: block;
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-section ul {
    list-style: none;
}

.mobile-nav-section ul li a {
    display: block;
    padding: 12px 25px 12px 40px;
    color: var(--color-text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-bg-alt);
    transition: var(--transition);
}

.mobile-nav-section ul li a:hover {
    background: var(--color-bg-alt);
    padding-left: 45px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-content {
    padding-top: 75px;
    min-height: calc(100vh - 400px);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 50%, var(--color-alpine) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,54,93,0.6) 0%, rgba(26,54,93,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196,163,90,0.2);
    border: 1px solid var(--color-secondary);
    border-radius: 30px;
    color: var(--color-secondary-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(196,163,90,0.4);
}

.hero-cta:hover {
    background: var(--color-secondary-light);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196,163,90,0.5);
}

.page-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.03)" points="0,100 100,0 100,100"/></svg>') no-repeat;
    background-size: cover;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--color-secondary);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-current {
    color: var(--color-secondary-light);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-white);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196,163,90,0.15);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.station-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.station-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.station-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.station-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.station-card:hover .station-image img {
    transform: scale(1.08);
}

.station-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.station-content {
    padding: 25px;
}

.station-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.station-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.station-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.station-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--color-bg-alt);
}

.station-stat {
    text-align: center;
}

.station-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.station-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.station-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.station-link:hover {
    gap: 12px;
    color: var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.feature-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-list {
    list-style: none;
    margin: 25px 0;
}

.content-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-text);
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--color-secondary);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 1.4rem;
}

.info-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.info-card-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--color-primary);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--color-text);
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-image {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    padding: 15px 20px;
    background: var(--color-bg-alt);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-mountain) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 500;
    word-break: break-all;
}

.contact-card a:hover {
    color: var(--color-secondary);
}

.faq-section {
    padding: 60px 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-bg-alt);
    padding: 25px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--color-text-light);
    line-height: 1.8;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin: 35px 0 15px;
    color: var(--color-primary);
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 20px 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: var(--color-primary-light);
}

.cookie-reject {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.cookie-reject:hover {
    background: var(--color-text-muted);
    color: var(--color-white);
}

.site-footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, #0d1b2a 100%);
    color: rgba(255,255,255,0.8);
    padding-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-update {
    font-size: 0.85rem;
    color: var(--color-secondary);
}

.footer-subtitle {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

.footer-separator {
    color: rgba(255,255,255,0.3);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
    .stations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-container {
        height: 65px;
    }
    
    .main-content {
        padding-top: 65px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-grid.reverse > *:first-child {
        order: 1;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .station-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
