:root {
    --primary-color: #2c5530;
    --primary-light: #3d7344;
    --primary-dark: #1e3a22;
    --secondary-color: #d4a574;
    --secondary-light: #e8c9a8;
    --accent-color: #8b4513;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --text-muted: #95a5a6;
    --bg-cream: #f8f5f0;
    --bg-light: #fdfcfa;
    --bg-warm: #f5efe8;
    --bg-dark: #1e2d23;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(44, 85, 48, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 85, 48, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 85, 48, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
p {
    font-family: 'Source Sans 3', sans-serif;
    margin-bottom: 1rem;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-light);
}
img {
    max-width: 100%;
    height: auto;
}
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}
.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}
.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--secondary-color);
    animation-duration: 0.9s;
    animation-direction: reverse;
}
.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--accent-color);
    animation-duration: 0.6s;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(248, 245, 240, 0.98) 0%, rgba(248, 245, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}
.navbar {
    padding: 0.8rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(1200%) hue-rotate(80deg) brightness(95%) contrast(90%);
}
.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}
.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.toggler-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    background: var(--white);
}
.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}
.dropdown-item:hover {
    background: var(--bg-warm);
    color: var(--primary-color);
}
.offcanvas {
    background: var(--bg-cream);
}
.offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}
.offcanvas-title {
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}
.offcanvas-body {
    padding: 1.5rem;
}
.offcanvas .nav-link {
    padding: 1rem;
    border-bottom: 1px solid rgba(44, 85, 48, 0.08);
}
main {
    padding-top: 80px;
    min-height: 100vh;
}
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 50%, var(--bg-light) 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.hero-title span {
    color: var(--primary-color);
    position: relative;
}
.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-image {
    position: relative;
    z-index: 1;
}
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.hero-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
    color: var(--white);
}
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--white);
}
.section-padding {
    padding: 5rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.section-title {
    margin-bottom: 1rem;
}
.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}
.routes-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}
.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.route-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.route-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.route-card:hover .route-card-image img {
    transform: scale(1.08);
}
.route-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 85, 48, 0.9);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.route-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.route-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.route-card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.route-card-meta {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.route-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}
.route-card-link:hover {
    gap: 12px;
}
.features-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.features-section .section-subtitle {
    color: var(--secondary-light);
}
.features-section .section-title {
    color: var(--white);
}
.features-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}
.feature-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}
.feature-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.feature-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}
.info-section {
    background: var(--bg-warm);
}
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}
.info-card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.info-card-title img {
    width: 40px;
    height: 40px;
}
.info-list {
    list-style: none;
}
.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 85, 48, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}
.cta-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    text-align: center;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.article-hero {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 6rem 0 4rem;
    position: relative;
}
.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--bg-light));
}
.article-breadcrumb {
    margin-bottom: 1.5rem;
}
.article-breadcrumb a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.article-breadcrumb span {
    color: var(--text-light);
    margin: 0 8px;
}
.article-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-title {
    margin-bottom: 1.5rem;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.article-content {
    background: var(--bg-light);
    padding: 4rem 0;
}
.article-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}
.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.article-body p {
    margin-bottom: 1.5rem;
}
.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.article-body li {
    margin-bottom: 0.5rem;
}
.article-image {
    margin: 2rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.article-image img {
    width: 100%;
    height: auto;
}
.article-image figcaption {
    background: var(--bg-warm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}
.article-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.sidebar-card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary-color);
}
.sidebar-links {
    list-style: none;
}
.sidebar-links li {
    margin-bottom: 0.5rem;
}
.sidebar-links a {
    display: block;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 0.9rem;
}
.sidebar-links a:hover {
    background: var(--bg-warm);
    color: var(--primary-color);
}
.highlight-box {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--secondary-light) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.highlight-box h4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}
.route-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.stat-item {
    background: var(--bg-warm);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
}
.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.page-hero {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}
.page-hero-title {
    margin-bottom: 1rem;
}
.page-hero-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}
.about-section {
    background: var(--bg-light);
}
.about-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.contact-section {
    background: var(--bg-light);
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}
.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 0;
}
.contact-info-content a {
    color: var(--primary-color);
}
.policy-content {
    background: var(--bg-light);
    padding: 4rem 0;
}
.policy-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.policy-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}
.policy-body h2:first-of-type {
    margin-top: 0;
}
.policy-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.policy-body li {
    margin-bottom: 0.5rem;
}
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}
.footer-wave svg {
    width: 100%;
    height: 80px;
}
.footer-wave path {
    fill: var(--bg-warm);
}
.footer-content {
    padding: 6rem 0 2rem;
}
.footer-section {
    margin-bottom: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.footer-brand img {
    filter: brightness(0) invert(1);
}
.footer-brand h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0;
}
.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}
.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright,
.last-updated {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 1.5rem;
    border-top: 3px solid var(--primary-color);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.cookie-text {
    flex: 1;
    min-width: 300px;
}
.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}
.cookie-text a {
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.cookie-accept {
    background: var(--primary-color);
    color: var(--white);
}
.cookie-accept:hover {
    background: var(--primary-light);
}
.cookie-reject {
    background: var(--bg-warm);
    color: var(--text-dark);
    border: 1px solid var(--text-muted);
}
.cookie-reject:hover {
    background: var(--secondary-light);
}
.cookie-customize {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.cookie-customize:hover {
    background: var(--primary-color);
    color: var(--white);
}
.cookie-settings {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.cookie-setting-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 26px;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}
.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--primary-color);
}
.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}
.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}
.setting-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.setting-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.cookie-actions-settings {
    padding-top: 1rem;
}
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    .hero-image-wrapper::before {
        display: none;
    }
    .hero-image-wrapper img {
        height: 350px;
    }
    .article-body {
        padding: 2rem;
    }
    .article-sidebar {
        position: static;
        margin-top: 2rem;
    }
}
@media (max-width: 767px) {
    main {
        padding-top: 70px;
    }
    .section-padding {
        padding: 3rem 0;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-image-wrapper img {
        height: 280px;
    }
    .article-hero {
        padding: 4rem 0 3rem;
    }
    .article-body {
        padding: 1.5rem;
    }
    .route-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-card {
        padding: 1.5rem;
    }
    .policy-body {
        padding: 1.5rem;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    .cookie-setting-item {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .hero-section {
        padding: 2rem 0;
    }
    .hero-image-wrapper img {
        height: 220px;
    }
    .route-card-image {
        height: 180px;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .info-card {
        padding: 1.5rem;
    }
}
