:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1e3d2a;
    --primary-light: #4a7c5c;
    --secondary-color: #8b6914;
    --secondary-light: #c9a227;
    --accent-color: #d4a373;
    --text-color: #2c3e2d;
    --text-light: #5a6b5c;
    --bg-light: #f8f6f1;
    --bg-cream: #faf8f3;
    --bg-dark: #1a2e1e;
    --white: #ffffff;
    --border-color: #d4ddd6;
    --shadow: 0 4px 20px rgba(45, 90, 61, 0.1);
    --shadow-lg: 0 10px 40px rgba(45, 90, 61, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-cream);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sawarabi Mincho', 'Noto Sans JP', serif;
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    color: var(--text-light);
    font-size: 14px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow);
}

.site-header .navbar {
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    filter: brightness(0) invert(1);
}

.brand-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.brand-accent {
    color: var(--secondary-light);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 400;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.site-main {
    padding-top: 70px;
}

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Aerial_view_of_Mount_Fuji_from_the_southwest.jpg/1920px-Aerial_view_of_Mount_Fuji_from_the_southwest.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,46,30,0.85) 0%, rgba(45,90,61,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-light);
    border-radius: 20px;
    z-index: -1;
}

.intro-content {
    padding-left: 50px;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-outline-primary {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.featured-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.featured-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-large {
    grid-row: span 2;
}

.featured-card a {
    display: block;
    height: 100%;
}

.featured-large .card-image {
    height: 60%;
}

.featured-card:not(.featured-large) .card-image {
    height: 180px;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tips-section {
    padding: 100px 0;
    background: var(--white);
}

.tip-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tip-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.tip-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.tip-card a {
    color: var(--secondary-color);
    font-weight: 500;
}

.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Mount_Hotaka_from_Kamikochi.jpg/1920px-Mount_Hotaka_from_Kamikochi.jpg') center/cover no-repeat fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,46,30,0.9) 0%, rgba(45,90,61,0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--secondary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.page-hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Tateyama_mountain_range_Murodo.jpg/1920px-Tateyama_mountain_range_Murodo.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.page-hero h1 {
    position: relative;
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.about-intro,
.mission-section,
.values-section,
.resources-section {
    padding: 80px 0;
}

.about-intro {
    background: var(--white);
}

.about-image,
.values-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-content,
.values-content {
    padding: 30px 0;
}

.about-content h2,
.values-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.mission-section {
    background: var(--bg-light);
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.values-section {
    background: var(--white);
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.value-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.resources-section {
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.resource-card {
    display: block;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.resource-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.contact-hero .page-hero-overlay {
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Japan_Yatsugatake_01.jpg/1920px-Japan_Yatsugatake_01.jpg') center/cover no-repeat;
}

.contact-intro {
    padding: 60px 0 30px;
    background: var(--bg-light);
}

.contact-intro-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-cards-section {
    padding: 50px 0 80px;
    background: var(--bg-light);
}

.contact-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    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 25px;
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-email {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 25px;
    background: rgba(139, 105, 20, 0.1);
    border-radius: 30px;
    transition: var(--transition);
}

.contact-email:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.response-notice {
    padding: 50px 0;
    background: var(--bg-light);
}

.notice-content {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.notice-content > i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.notice-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.notice-content p {
    color: var(--text-light);
    margin: 0;
}

.policy-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.policy-content {
    padding: 80px 0;
    background: var(--white);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.policy-section h4 {
    font-size: 1.1rem;
    margin: 25px 0 15px;
}

.policy-section ul {
    padding-left: 25px;
    color: var(--text-light);
}

.policy-section li {
    margin-bottom: 10px;
}

.policy-section p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
    text-align: center;
}

.policy-footer p {
    color: var(--text-light);
    font-style: italic;
}

.article-page {
    background: var(--bg-cream);
}

.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,46,30,0.95) 0%, rgba(26,46,30,0.3) 50%, transparent 100%);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
    color: var(--white);
}

.article-category {
    display: inline-block;
    padding: 6px 18px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-content {
    padding: 80px 0;
}

.article-body {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--bg-light);
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.info-box,
.warning-box {
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(45,90,61,0.1) 0%, rgba(74,124,92,0.1) 100%);
    border-left: 4px solid var(--primary-color);
}

.warning-box {
    background: linear-gradient(135deg, rgba(139,105,20,0.1) 0%, rgba(201,162,39,0.1) 100%);
    border-left: 4px solid var(--secondary-color);
}

.info-box h4,
.warning-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-box ul,
.warning-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box li,
.warning-box li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.route-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.route-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.route-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.route-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
}

.route-card p {
    margin-bottom: 10px;
}

.highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.gear-list h4,
.gear-detail h4 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--primary-dark);
}

.gear-list ul,
.gear-detail ul {
    padding-left: 25px;
}

.gear-list li,
.gear-detail li {
    color: var(--text-light);
    margin-bottom: 12px;
}

.gear-list li strong,
.gear-detail li strong {
    color: var(--text-color);
}

.season-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.season-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.season-info p {
    margin: 0;
}

.access-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.access-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.access-info h4:not(:first-child) {
    margin-top: 25px;
}

.access-info p {
    margin-bottom: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

.layer-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.layer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.layer-info ul {
    margin: 0;
    padding-left: 20px;
}

.maintenance-tips h4 {
    font-size: 1.1rem;
    margin: 30px 0 15px;
    color: var(--primary-dark);
}

.maintenance-tips ul {
    background: var(--bg-light);
    padding: 20px 20px 20px 45px;
    border-radius: 10px;
}

.article-footer {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--bg-light);
}

.related-links,
.external-resources {
    margin-bottom: 30px;
}

.related-links h4,
.external-resources h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.related-links ul,
.external-resources ul {
    list-style: none;
    padding: 0;
}

.related-links li,
.external-resources li {
    margin-bottom: 10px;
}

.related-links a,
.external-resources a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.related-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
}

.external-resources a::before {
    content: '\F1C5';
    font-family: 'bootstrap-icons';
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.toc-list a:hover {
    color: var(--primary-color);
}

.sidebar-article {
    margin-bottom: 20px;
}

.sidebar-article a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sidebar-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-article span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.sidebar-article:hover span {
    color: var(--primary-color);
}

.site-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-brand h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.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(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright,
.last-updated {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    z-index: 9998;
    padding: 25px 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cookie-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-accept {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--primary-dark);
}

.btn-reject {
    padding: 12px 30px;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reject:hover {
    border-color: var(--text-light);
    color: var(--text-color);
}

@media (max-width: 1200px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-large {
        grid-row: span 1;
    }
    
    .featured-large .card-image {
        height: 300px;
    }
    
    .article-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .article-body {
        padding: 30px;
    }
    
    .sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .values-content {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .intro-section,
    .featured-section,
    .tips-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 35px 25px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .route-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .article-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .article-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .article-body {
        padding: 25px 20px;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .info-box,
    .warning-box,
    .route-card,
    .season-info {
        padding: 20px;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
}
