:root {
    --primary: #176b4d;
    --primary2: #0f5138;
    --soft: #eef8f3;
    --accent: #e6a52f;
    --text: #18221d;
    --muted: #68736d;
    --bg: #f7f9f7;
    --white: #fff;
    --border: #e4ebe6;
    --shadow: 0 12px 35px rgba(20, 50, 35, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
.container { width: min(1180px, 92%); margin: auto; }
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.brand { font-weight: 800; color: var(--primary); font-size: 20px; }
.brand small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
nav { display: flex; gap: 18px; align-items: center; }
nav a { font-size: 14px; color: #4c5851; }
nav a:hover { color: var(--primary); }
.lang {
    border: 0;
    background: var(--primary);
    color: #fff;
    padding: 9px 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}
.hero { background: linear-gradient(135deg, #0e5138, #1b7655); color: #fff; padding: 82px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 45px; align-items: center; }
.eyebrow { color: #f5c65b; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.05; margin: 12px 0 20px; }
.hero p { font-size: 18px; color: #e1eee8; max-width: 700px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 11px; font-weight: 700; border: 1px solid rgba(255, 255, 255, 0.25); }
.btn-primary { background: #fff; color: var(--primary); }
.btn-outline { color: #fff; }
.hero-card { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); padding: 25px; border-radius: 20px; }
.hero-card .big { font-size: 44px; font-weight: 800; }
.hero-card p { font-size: 14px; margin: 0; color: #dbe9e3; }
section { padding: 72px 0; }
.section-head { max-width: 750px; margin-bottom: 30px; }
.section-head h2 { font-size: 34px; margin: 0 0 8px; }
.section-head p { color: var(--muted); margin: 0; }
.hi { display: none; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); }
.card h3 { margin: 10px 0 8px; font-size: 20px; }
.card p { color: var(--muted); margin: 0 0 16px; }
.icon { font-size: 32px; }
.tag { display: inline-block; background: var(--soft); color: var(--primary); font-size: 12px; font-weight: 800; padding: 5px 9px; border-radius: 20px; }
.map { display: inline-block; color: var(--primary); font-weight: 800; font-size: 14px; }
.about { background: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 25px; }
.stat { background: var(--soft); padding: 20px; border-radius: 15px; }
.stat strong { font-size: 27px; display: block; color: var(--primary); }
.stat span { color: var(--muted); font-size: 13px; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.feature .card { padding: 32px; }
.feature ul { padding-left: 20px; color: var(--muted); }
.notice { background: #fff7e7; border: 1px solid #f2d79d; padding: 15px; border-radius: 12px; color: #73520d; font-size: 14px; }
.table-wrap { overflow: auto; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.table { width: 100%; border-collapse: collapse; min-width: 700px; }
.table th, .table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.table th { background: var(--soft); color: var(--primary); font-size: 13px; }
.table td { font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact { display: flex; gap: 14px; align-items: flex-start; }
.contact b { display: block; }
.contact span { color: var(--muted); font-size: 14px; }
footer { background: #10251d; color: #d8e5df; padding: 45px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 22px;
    grid-auto-flow: column;
}
.footer-title { color: #fff; font-weight: 800; margin-bottom: 10px; }
.footer-links a { display: block; color: #b8c9c1; font-size: 14px; margin: 5px 0; }
.visitor-counter { padding-left: 18px; border-left: 2px solid #f5c65b; }
.visitor-counter strong { display: block; color: #f5c65b; font-size: 28px; line-height: 1.2; }
.visitor-counter span { color: #b8c9c1; font-size: 13px; }
.copyright { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 30px; padding-top: 18px; font-size: 13px; color: #9eb0a8; }
.place-img { width: 100%; height: 190px; object-fit: cover; border-radius: 14px; margin-bottom: 14px; background: #eaf1ed; }
.hero-image { width: 100%; height: 310px; object-fit: cover; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.18); }
.hero-slider { position: relative; width: 100%; height: 310px; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.18); background: #163f31; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.25)); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, 0.35); color: #fff; font-size: 30px; line-height: 30px; cursor: pointer; z-index: 3; }
.slider-btn:hover { background: rgba(0, 0, 0, 0.55); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.slider-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 7px; z-index: 4; }
.dot { width: 8px; height: 8px; border: 0; border-radius: 50%; padding: 0; background: rgba(255, 255, 255, 0.55); cursor: pointer; }
.dot.active { width: 22px; border-radius: 10px; background: #fff; }
.official-img { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; margin-bottom: 8px; }
.section-banner { width: 100%; height: 280px; object-fit: cover; border-radius: 20px; margin: 5px 0 28px; }
.hero-bg-slider { position: relative; min-height: 650px; display: flex; align-items: center; overflow: hidden; background: #123f2d; padding: 0; }
.hero-bg-slides, .hero-overlay { position: absolute; inset: 0; }
.hero-bg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-bg-slide.active { opacity: 1; }
.hero-bg-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(4, 30, 20, 0.82), rgba(4, 30, 20, 0.58), rgba(4, 30, 20, 0.38)); }
.hero-content { position: relative; z-index: 3; width: min(1180px, 92%); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-stats > div { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); padding: 13px 18px; border-radius: 13px; }
.hero-stats strong { display: block; color: #fff; font-size: 20px; }
.hero-stats span { font-size: 12px; color: #dbe9e3; }
.bg-slider-btn { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; background: rgba(0, 0, 0, 0.25); color: #fff; font-size: 32px; cursor: pointer; }
.bg-slider-btn:hover { background: rgba(0, 0, 0, 0.5); }
.bg-prev { left: 25px; }
.bg-next { right: 25px; }
.bg-slider-dots { position: absolute; z-index: 5; bottom: 25px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.bg-dot { width: 9px; height: 9px; border: 0; padding: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; }
.bg-dot.active { width: 25px; border-radius: 10px; background: #fff; }
@media (max-width: 850px) {
    nav { display: none; }
    .hero-grid, .feature, .contact-grid { grid-template-columns: 1fr; }
    .grid { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; grid-auto-flow: row; }
    .hero { padding-top: 55px; }
}
@media (max-width: 700px) {
    .hero-bg-slider { min-height: 680px; }
    .hero-overlay { background: rgba(4, 30, 20, 0.68); }
    .bg-prev { left: 12px; }
    .bg-next { right: 12px; }
    .hero-stats { gap: 8px; }
    .hero-stats > div { padding: 10px 12px; }
}
@media (max-width: 560px) {
    .grid, .stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-head h2 { font-size: 28px; }
    .hero h1 { font-size: 42px; }
}
