:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2544;
    --secondary-color: #c9a959;
    --accent-color: #d4af37;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-color: #f7fafc;
    --bg-dark: #1a202c;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --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 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-accent: 'Shippori Mincho', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: 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;
    position: relative;
}

.loader-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 169, 89, 0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.4rem;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    border-radius: 10px;
    color: var(--primary-dark);
}

.brand-text {
    font-family: var(--font-accent);
    letter-spacing: 0.5px;
}

.brand-accent {
    color: var(--secondary-color);
}

.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: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.offcanvas {
    background: var(--primary-dark);
    width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 25px;
}

.offcanvas-title {
    color: #fff;
    font-family: var(--font-accent);
}

.btn-close {
    filter: invert(1);
}

.offcanvas-body .navbar-nav {
    padding: 15px 10px;
}

.offcanvas-body .dropdown-menu {
    background: rgba(255,255,255,0.05);
    box-shadow: none;
}

.offcanvas-body .dropdown-item {
    color: rgba(255,255,255,0.8);
}

.offcanvas-body .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--secondary-color);
}

main {
    padding-top: 80px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 37, 68, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 89, 0.3);
}

.btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.feature-card.featured::before {
    background: var(--secondary-color);
    transform: scaleX(1);
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-text {
    color: #fff;
}

.feature-card.featured .feature-link {
    color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-card.featured .feature-icon {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-card.featured .feature-icon i {
    color: var(--primary-dark);
}

.feature-title {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.feature-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.articles-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #fff 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.article-card.article-large {
    grid-row: span 2;
}

.article-image-link {
    display: block;
    overflow: hidden;
}

.article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
}

.article-card.article-large .article-image {
    height: 300px;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-title a {
    color: var(--primary-dark);
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-card.article-large .article-title {
    font-size: 1.4rem;
}

.article-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-preview {
    padding: 100px 0;
    background: var(--primary-dark);
}

.gallery-preview .section-badge {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.gallery-preview .section-title {
    color: #fff;
}

.gallery-preview .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-location {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-family: var(--font-accent);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}

.btn-cta {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.resources-section {
    padding: 80px 0;
    background: #fff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-color);
    padding: 20px 25px;
    border-radius: 12px;
    color: var(--text-color);
    transition: var(--transition);
}

.resource-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.resource-link i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.resource-link:hover i {
    color: #fff;
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.footer-brand .brand-text {
    font-family: var(--font-accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.copyright, .update-date {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9998;
    padding: 20px 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h6 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-color);
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-hero-small {
    min-height: 35vh;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 37, 68, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.page-hero-title {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 30px;
}

.about-title {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.9;
}

.mission-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.mission-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.mission-item {
    text-align: center;
    padding: 20px;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 28px;
    color: #fff;
}

.mission-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.mission-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.values-section {
    padding: 100px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-color);
    padding: 35px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(26, 54, 93, 0.1);
    position: absolute;
    top: 20px;
    right: 25px;
}

.value-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.timeline-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.timeline-title {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

.contact-intro {
    padding: 60px 0;
    background: #fff;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.contact-cards-section {
    padding: 0 0 80px;
    background: #fff;
}

.contact-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 28px;
    color: var(--secondary-color);
}

.contact-card-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.contact-card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-card-link:hover {
    color: var(--secondary-color);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.location-section {
    padding: 80px 0;
    background: #fff;
}

.location-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-image img {
    width: 100%;
    display: block;
}

.location-content {
    padding-left: 30px;
}

.location-title {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.location-text {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.location-info {
    list-style: none;
    padding: 0;
}

.location-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.location-info li:last-child {
    border-bottom: none;
}

.location-info i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.location-info a {
    color: var(--primary-color);
}

.policy-section {
    padding: 80px 0;
    background: #fff;
}

.policy-content {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 20px;
}

.policy-update {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.policy-update p {
    margin: 0;
    font-size: 0.9rem;
}

.policy-block {
    margin-bottom: 35px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-block h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.policy-block p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-block ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.policy-block li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.policy-contact {
    list-style: none;
    padding: 0;
}

.policy-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-contact i {
    color: var(--secondary-color);
}

.article-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 37, 68, 0.88) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 800px;
}

.article-category-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-hero-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.article-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.article-meta-hero {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.article-meta-hero i {
    margin-right: 5px;
}

.article-content-section {
    padding: 80px 0;
    background: #fff;
}

.article-body {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 20px;
}

.article-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.article-intro .lead {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 2;
}

.article-section {
    margin-bottom: 40px;
}

.article-section h2 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
}

.article-section h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 25px 0 15px;
}

.article-section h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.article-section p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 15px;
}

.article-figure {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-figure img {
    width: 100%;
    display: block;
}

.article-figure figcaption {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 12px 20px;
    font-size: 0.85rem;
    text-align: center;
}

.info-box {
    background: #fff;
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-sm);
}

.info-box h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-list {
    padding-left: 25px;
    margin: 20px 0;
}

.article-list li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.column-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

.column-item h4 {
    margin-top: 0;
}

.column-item ul {
    margin: 0;
    padding-left: 20px;
}

.column-item li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-conclusion {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.article-conclusion h2 {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.article-sources {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.article-sources h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.article-sources ul {
    list-style: none;
    padding: 0;
}

.article-sources li {
    margin-bottom: 10px;
}

.article-sources a {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.article-sources a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.widget-title {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.toc-list a:hover {
    background: #fff;
    color: var(--primary-color);
}

.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 12px;
}

.related-posts a {
    display: block;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    transition: var(--transition);
}

.related-posts a:hover {
    box-shadow: var(--shadow-sm);
}

.related-title {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.camera-review {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.camera-specs {
    background: var(--bg-color);
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.camera-specs h4 {
    margin-top: 0;
    margin-bottom: 12px;
}

.camera-specs ul {
    margin: 0;
    padding-left: 20px;
}

.camera-specs li {
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.6;
}

.camera-verdict {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 0;
    font-size: 0.95rem;
}

.camera-verdict strong {
    color: var(--secondary-color);
}

.comparison-table {
    overflow-x: auto;
    margin: 25px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--bg-color);
}

.photo-spot {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.spot-info {
    background: var(--bg-color);
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.spot-info h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.spot-info ul {
    margin: 0;
    padding-left: 20px;
}

.spot-info li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.season-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.season-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.season-card h3 i {
    color: var(--secondary-color);
}

.season-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.season-card li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.season-card li:last-child {
    border-bottom: none;
}

@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-column: span 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .season-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card.article-large {
        grid-row: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .location-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .article-body {
        padding: 30px;
    }
    
    .two-column-content {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.gallery-item-large {
        grid-column: auto;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 30px 25px;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .article-hero-title {
        font-size: 1.8rem;
    }
    
    .article-body {
        padding: 25px;
    }
    
    .policy-content {
        padding: 30px;
    }
    
    .mission-card {
        padding: 30px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -28px;
    }
    
    .season-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 15px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        width: 38px;
        height: 38px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
}
