:root {
  --teal: #189c93;
  --teal-dark: #127a73;
  --teal-light: #5fc4bb;
  --orange: #f7941e;
  --yellow: #ffd23f;
  --ink: #333333;
  --ink-soft: #555555;
  --paper: #ffffff;
  --sky-top: #eaf7f6;
  --sky-bottom: #ffffff;
  --line: #d9e8e6;
  --radius: 12px;
  --shadow: 0 3px 10px rgba(0,0,0,0.15);
  --shadow-soft: 0 2px 6px rgba(0,0,0,0.10);
  --sans: Verdana, Arial, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sky-top);
  line-height: 1.6;
  font-size: 14px;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: underline; }
a:hover { color: var(--orange); }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: bold;
  color: var(--teal-dark);
  margin: 0 0 0.6em;
}

.page-header-strip {
  background: linear-gradient(180deg, #ffffff 0%, var(--sky-top) 100%);
  border-bottom: 4px solid var(--teal);
  padding: 18px 0;
  text-align: center;
}
.page-header-strip img { margin: 0 auto; max-width: 480px; }

.nav-bar {
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal) 100%);
  border-bottom: 2px solid var(--teal-dark);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) inset;
}
.main-nav { display: flex; justify-content: center; flex-wrap: wrap; }
.main-nav a {
  display: block; color: #fff; text-decoration: none; font-weight: bold; font-size: 13px;
  padding: 10px 18px; border-right: 1px solid rgba(255,255,255,0.25); text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.main-nav a:last-child { border-right: none; }
.main-nav a:hover { background: rgba(255,255,255,0.15); color: #fff3d6; }

/* Panel = the classic rounded, shadowed content box */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 26px;
  margin-bottom: 22px;
}
.panel-header {
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal) 100%);
  color: #fff;
  margin: -22px -26px 18px;
  padding: 12px 26px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 17px;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
}

.content-section { padding: 28px 0; }

.article-body p { margin: 0 0 12px; color: var(--ink-soft); }
.article-body ul { color: var(--ink-soft); margin: 0 0 12px; padding-left: 20px; }
.article-body li { margin-bottom: 5px; }

/* Intro with photo */
.intro-grid { display: grid; grid-template-columns: 1fr 260px; gap: 22px; align-items: center; }
.intro-grid img { border: 4px solid #fff; box-shadow: var(--shadow); border-radius: 6px; }

/* Direction blocks */
.directions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.direction-card {
  background: linear-gradient(180deg, #fff 0%, var(--sky-top) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
}
.direction-card h3 { font-size: 14.5px; color: var(--orange); margin-bottom: 10px; border-bottom: 2px dotted var(--line); padding-bottom: 8px; }
.direction-card ul { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--ink-soft); }
.direction-card li { padding: 4px 0 4px 16px; position: relative; }
.direction-card li::before { content: "★"; position: absolute; left: 0; color: var(--teal); font-size: 10px; top: 6px; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.news-card { background: #fcfffe; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-soft); }
.news-card .date { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: bold; padding: 2px 10px; border-radius: 999px; margin-bottom: 8px; }
.news-card h4 { font-size: 14.5px; margin: 0 0 6px; color: var(--teal-dark); }
.news-card p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-grid a img { border: 3px solid #fff; box-shadow: var(--shadow-soft); border-radius: 4px; aspect-ratio: 4/3; object-fit: cover; }

/* Docs list */
.doc-list { list-style: none; margin: 0; padding: 0; }
.doc-list li { padding: 8px 0 8px 26px; border-bottom: 1px dashed var(--line); font-size: 13.5px; color: var(--ink-soft); position: relative; }
.doc-list li::before { content: "📄"; position: absolute; left: 0; }
.doc-list li:last-child { border-bottom: none; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.info-table td { padding: 8px 10px; border-bottom: 1px dotted var(--line); vertical-align: top; }
.info-table td:first-child { color: var(--teal-dark); font-weight: bold; width: 230px; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #eafffb;
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  margin-top: 20px;
  border-top: 3px solid var(--orange);
}
.site-footer a { color: #fff; }

@media (max-width: 860px) {
  .main-nav { flex-direction: column; }
  .main-nav a { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); text-align: center; }
  .intro-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .info-table td:first-child { width: auto; display: block; }
}
