@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --col-pri: #393D48;
  --col-sec: #0569BB;
  --col-ter: #c77d45;
  --col-pritxt: #fff;
  --col-sectxt: #fff;
  --col-light: #f5f7fa;
  --col-border: #e0e4e8;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a { color: var(--col-sec); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--col-ter); }
img { max-width: 100%; height: auto; }

.reset__ul { list-style: none; }
.reset__a { text-decoration: none; color: inherit; }
.reset__button { background: none; border: none; cursor: pointer; }
.block { display: block; }
.inline { display: inline-flex; align-items: center; }
.cover { position: relative; overflow: hidden; }
.cover img.fit, .cover img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.parent { position: relative; }
.col__white { color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.fw__700 { font-weight: 700; }
.f__uppercase { text-transform: uppercase; }
.bg__pri { background-color: var(--col-pri); }
.spread--both { margin-left: -20px; margin-right: -20px; padding: 40px 20px; }

.access { position: absolute; top: -100px; }
.access__link { position: absolute; top: 0; left: 0; background: var(--col-sec); color: #fff; padding: 10px 20px; z-index: 9999; transform: translateY(-100%); transition: transform 0.3s; }
.access__link:focus { transform: translateY(0); }

.header {
  background: var(--col-pri);
  color: var(--col-pritxt);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  min-height: 70px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header__extras { order: 3; }

.menu__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--col-pritxt);
  padding: 10px 15px;
  cursor: pointer;
}

.menu__btn__icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.menu__btn:hover .menu__btn__icon {
  background: rgba(255,255,255,0.25);
}

.menu__btn__icon svg { width: 24px; height: 24px; fill: currentColor; }
.menu__btn__text { font-size: 10px; letter-spacing: 2px; font-weight: 700; }

.header__container { flex: 1; }

.header__logo { gap: 15px; }
.header__logo__image { text-decoration: none; color: inherit; }
.header__logo__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--col-pritxt);
  letter-spacing: 0.5px;
  margin: 0;
}
.header__logo__subtitle {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(57, 61, 72, 0.97);
  z-index: 2001;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mason--menu .menu {
  opacity: 1;
  visibility: visible;
}

.mobile__menu__bg {
  display: none;
}

.menu__sidebar {
  padding: 80px 60px;
  display: flex;
  gap: 80px;
}

.menu__btn__close {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-pritxt);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.menu__btn__close:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.menu__btn__icon__close { width: 18px; height: 18px; }
.menu__btn__icon__close svg { width: 100%; height: 100%; fill: currentColor; }

.menu__list {
  padding: 0;
  flex: 0 0 auto;
}

.menu__list__item {
  position: relative;
}

.menu__list__item__link {
  padding: 15px 0;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  transition: color 0.3s;
  display: block;
}

.menu__list__item__link:hover {
  color: #fff;
}

.menu__list__item--selected > .menu__list__item__link {
  color: #fff;
}

.menu__list__item__button {
  position: absolute;
  right: -60px;
  top: 12px;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s;
}

.menu__list__item--subitems > .menu__list__item__link::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  vertical-align: middle;
  margin-left: 20px;
}

.menu__list__item--subitems > .menu__list__item__link span::after {
  content: ' \2192';
  margin-left: 5px;
}

.menu__list__item--expanded > .menu__list__item__button { transform: rotate(180deg); }

.menu__list__item__button__icon { width: 14px; height: 14px; fill: currentColor; }

.menu__list__item__sub {
  display: none;
  list-style: none;
  position: absolute;
  left: calc(100% + 100px);
  top: 0;
  white-space: nowrap;
}

.menu__list__item--expanded > .menu__list__item__sub { display: block; }
.menu__list__item--subitems:hover > .menu__list__item__sub { display: block; }

.menu__list__item__sub .menu__list__item__link {
  padding: 10px 0;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
}

.menu__list__item__sub .menu__list__item__link:hover {
  color: #fff;
}

.hero {
  height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--col-pri) 0%, var(--col-sec) 100%);
}

.hero__media { position: absolute; inset: 0; background: linear-gradient(135deg, var(--col-pri) 0%, #2c3e50 50%, var(--col-sec) 100%); }
.hero__banner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.hero__banner__title {
  color: #fff;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero__banner__text {
  color: var(--col-ter);
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  font-style: italic;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.urgent {
  background: var(--col-ter);
  padding: 14px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.urgent__list { text-align: center; }
.urgent__item { display: block; }
.urgent__item__link {
  color: #fff;
  font-weight: 600;
}
.urgent__item__link h2 { font-size: 15px; font-weight: 600; }
.urgent__item__link:hover { text-decoration: underline; }

.urgent__close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  padding: 5px;
  width: 20px;
  height: 20px;
}
.urgent__close svg { width: 100%; height: 100%; fill: currentColor; }
.urgent__close:hover { color: #fff; }

.homepage { padding-top: 0; }

.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 20px;
}

.welcome__content__subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--col-ter);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.welcome__content__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--col-pri);
  margin-bottom: 20px;
  line-height: 1.2;
}

.welcome__content__region p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.button__link a {
  display: inline-block;
  padding: 12px 30px;
  background: var(--col-sec);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
}

.button__link a:hover {
  background: #04528f;
  color: #fff;
  transform: translateY(-2px);
}

.welcome__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.welcome__media__image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.welcome__media__image img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome__media__image__2 {
  grid-row: span 2;
  aspect-ratio: auto;
}

.image__links { padding: 0 0 40px; }

.image__links__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.image__links__list__item {
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
}

.image__links__list__item__link {
  display: block;
  width: 100%;
  height: 100%;
}

.image__links__list__item__image {
  position: absolute;
  inset: 0;
  transition: transform 0.4s;
}

.image__links__list__item__link:hover .image__links__list__item__image {
  transform: scale(1.08);
}

.image__links__list__item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(57,61,72,0.85) 0%, rgba(57,61,72,0.2) 100%);
}

.image__links__list__item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
}

.image__links__list__item__content p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.content__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--col-pri);
}

.news { padding: 40px 20px; }

.news__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.news__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news__item__link { display: block; }

.news__item__image {
  height: 160px;
  background: linear-gradient(135deg, var(--col-sec), var(--col-pri));
}

.news__item__content {
  padding: 18px;
}

.news__item__content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--col-pri);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news__item__date {
  font-size: 13px;
  color: var(--col-ter);
  font-weight: 600;
}

.sidelinks { padding: 0 20px 40px; }

.sidelinks__list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.sidelinks__item { flex: 1; min-width: 200px; }

.sidelinks__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 25px;
  background: var(--col-sec);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}

.sidelinks__item__link:hover {
  background: #04528f;
  color: #fff;
  transform: translateY(-3px);
}

.upcoming { padding: 40px 20px; background: var(--col-light); }

.upcoming__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.upcoming__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.upcoming__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.upcoming__item:hover { transform: translateY(-3px); }

.upcoming__item__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

.upcoming__item__date {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: var(--col-sec);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.upcoming__item__link h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--col-pri);
  margin-bottom: 4px;
}

.upcoming__item__link p {
  font-size: 14px;
  color: #666;
}

.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact .content__title { margin-bottom: 25px; }

.contact__details p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.7;
}

.contact__details a { color: var(--col-sec); }
.contact__details a:hover { color: var(--col-ter); }

main.container {
  min-height: 10vh;
}

.page-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px 0;
}

.page-layout__content {
  flex: 1;
  min-width: 0;
}

.section-nav {
  width: 260px;
  flex-shrink: 0;
  background: var(--col-pri);
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.section-nav__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 22px 22px 12px;
  font-style: italic;
}

.section-nav__list {
  list-style: none;
  padding: 0 0 8px;
  margin: 0;
}

.section-nav__list li a {
  display: flex;
  align-items: center;
  padding: 12px 22px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-left: 4px solid transparent;
}

.section-nav__list li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.section-nav__list li.active a {
  background: var(--col-sec);
  color: #fff;
  border-left: 4px solid #fff;
  font-weight: 600;
}

.section-nav__list li.active a::before {
  content: "\2192";
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .page-layout {
    flex-direction: column;
    padding: 20px 0;
  }
  .section-nav {
    width: 100%;
    order: -1;
    position: static;
  }
}

.footer {
  background: #393D48;
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand h2 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.footer__brand p { display: none; }

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer__copyright {
  font-size: 14px;
  text-align: right;
}

.footer__copyright a {
  color: #6db3f2;
  text-decoration: underline;
}

.footer__copyright a:hover {
  color: #fff;
}

.footer__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.3s;
  text-decoration: underline;
}

.footer__links span.footer__sep {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.footer__links a:hover { color: #fff; }

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-container {
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none; border: none;
  font-size: 24px; color: #999;
  cursor: pointer; padding: 5px; line-height: 1;
}
.modal-close:hover { color: #333; }

.modal-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  letter-spacing: 2px; color: var(--col-pri);
  margin-bottom: 10px; text-transform: uppercase;
}

.modal-subtitle {
  font-size: 14px; letter-spacing: 1px;
  color: #999; margin-bottom: 35px;
  text-transform: uppercase;
}

.modal-input-group { margin-bottom: 18px; text-align: left; }
.modal-input-wrapper { position: relative; }

.modal-input-icon {
  position: absolute; left: 15px; top: 50%;
  transform: translateY(-50%); font-size: 16px;
}

.modal-input-wrapper input {
  width: 100%;
  padding: 14px 14px 14px 45px;
  font-size: 14px;
  font-family: var(--font-body);
  border: 2px solid var(--col-border);
  border-radius: 8px;
  background: var(--col-light);
  color: #333;
  transition: border-color 0.3s;
}

.modal-input-wrapper input::placeholder { color: #999; }
.modal-input-wrapper input:focus {
  outline: none;
  border-color: var(--col-sec);
  background: #fff;
}

.modal-login-button {
  width: 100%; padding: 14px;
  background: var(--col-pri); color: #fff;
  border: none; border-radius: 8px;
  font-size: 16px; font-family: var(--font-body);
  font-weight: 600; cursor: pointer;
  margin-top: 10px; transition: background 0.3s;
}
.modal-login-button:hover { background: #4a4e5a; }

.breadcrumb {
  padding: 15px 30px;
  font-size: 14px;
  color: #888;
  background: #f5f5f5;
}

.breadcrumb a {
  color: var(--col-sec);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb a.breadcrumb--active {
  color: var(--col-sec);
}

.breadcrumb span {
  margin: 0 8px;
  color: #aaa;
}

.page-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--col-pri);
  margin-bottom: 25px;
}

.routine-section {
  margin-bottom: 30px;
}

.routine-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--col-pri);
  margin-bottom: 12px;
}

.routine-section ul {
  padding-left: 25px;
}

.routine-section li {
  padding: 6px 0;
  color: #444;
  line-height: 1.6;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.schedule-table tr:nth-child(even) .schedule-activity {
  background: #f0f0f0;
}

.schedule-table tr:nth-child(odd) .schedule-activity {
  background: #e8e8e8;
}

.schedule-time {
  background: var(--col-pri);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px;
  width: 30%;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule-activity {
  padding: 14px 20px;
  font-size: 15px;
  font-style: italic;
  color: #333;
  border-bottom: 1px solid #ddd;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.sitemap-list > li {
  margin-bottom: 8px;
}

.sitemap-list > li > a {
  display: block;
  padding: 12px 20px;
  background: var(--col-pri);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.sitemap-list > li > a:hover {
  background: var(--col-sec);
}

.sitemap-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.sitemap-list ul li a {
  display: block;
  padding: 10px 20px 10px 40px;
  color: var(--col-sec);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.sitemap-list ul li a:hover {
  background: #f0f4f8;
}

.sitemap-list ul li a::before {
  content: '\203A';
  margin-right: 10px;
  color: #aaa;
}

.page-banner {
  background: linear-gradient(135deg, var(--col-pri) 0%, var(--col-sec) 100%);
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
}

.page-banner p {
  font-size: 16px;
  opacity: 0.85;
  margin-top: 8px;
}

.page-content { padding: 50px 0; }

.page-content h1, .page-content h2, .page-content h3 {
  font-family: var(--font-heading);
  color: var(--col-pri);
}

.page-content h1 { font-size: 28px; margin-bottom: 20px; }
.page-content h2 { font-size: 24px; margin: 30px 0 15px; }
.page-content h3 { font-size: 20px; margin: 20px 0 10px; }
.page-content p { margin-bottom: 15px; line-height: 1.7; }

.page-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }

.page-content table th {
  background: var(--col-sec);
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.page-content table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--col-border);
  font-size: 14px;
}

.page-content table tr:nth-child(even) { background: var(--col-light); }

.site-header {
  background: var(--col-pri);
  color: var(--col-pritxt);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo { display: flex; align-items: center; gap: 15px; }
.header-logo img { height: 50px; width: auto; }

.header-logo h1 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--col-pritxt);
  letter-spacing: 0.5px;
}

.header-logo h1 span {
  display: block;
  font-size: 12px; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.8;
}

.menu-toggle {
  display: block;
  background: none; border: none; cursor: pointer;
  padding: 10px; color: var(--col-pritxt);
}

.menu-toggle svg { width: 28px; height: 28px; fill: currentColor; }

.main-nav {
  display: none;
  position: fixed;
  top: 0; right: -320px;
  width: 320px; height: 100vh;
  background: var(--col-pri);
  z-index: 2000; overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  padding-top: 60px;
}

.main-nav.active { display: block; right: 0; }

.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}

.nav-overlay.active { display: block; }

.nav-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none; border: none;
  color: #fff; font-size: 28px;
  cursor: pointer; padding: 5px 10px;
}
.nav-close:hover { color: var(--col-ter); }

.main-nav ul { list-style: none; display: flex; flex-direction: column; }
.main-nav ul li { position: relative; }

.main-nav ul li > a {
  display: block;
  padding: 14px 25px;
  color: rgba(255,255,255,0.9);
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.main-nav ul li > a:hover,
.main-nav ul li.active > a {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.main-nav .dropdown { display: none; background: rgba(0,0,0,0.15); }
.main-nav ul li.dropdown-open .dropdown { display: block; }

.dropdown-columns { display: flex; flex-direction: column; }
.dropdown-column { min-width: 100%; }

.main-nav .dropdown a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 400;
  text-decoration: none;
  transition: background 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-nav .dropdown a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.main-nav .dropdown a:last-child { border-bottom: none; }

.section { padding: 60px 0; }
.section--alt { background: var(--col-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 700;
  color: var(--col-pri);
  margin-bottom: 10px;
}

.section-subtitle { font-size: 16px; color: #666; margin-bottom: 40px; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 15px; font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; border: none;
}

.btn--primary { background: var(--col-sec); color: #fff; }
.btn--primary:hover { background: #04528f; color: #fff; }
.btn--outline { background: transparent; color: var(--col-sec); border: 2px solid var(--col-sec); }
.btn--outline:hover { background: var(--col-sec); color: #fff; }

.site-footer {
  background: #2c2f38;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2 {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 5px;
}
.footer-brand p { font-size: 13px; opacity: 0.7; }

.footer-links { display: flex; gap: 30px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px; text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom { text-align: center; padding-top: 20px; font-size: 13px; }

.staff-member {
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease;
}

.staff-member:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.staff-photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--col-light);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  background: var(--col-light);
  color: #ccc;
}

.staff-info { padding-top: 5px; }

.staff-name {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--col-pri);
  margin-bottom: 5px;
}

.staff-role {
  font-size: 16px;
  color: var(--col-sec);
  font-weight: 600;
  margin-bottom: 3px;
  background: #e8f0fa;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}

.staff-safeguarding {
  font-size: 14px;
  color: var(--col-ter);
  font-weight: 500;
  margin-bottom: 3px;
}

.staff-note {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-top: 5px;
}

.contact-strip {
  background: var(--col-pri);
  color: var(--col-pritxt);
  padding: 50px 0;
}

.contact-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-strip-item { text-align: center; }

.contact-strip-item h3 {
  font-size: 16px; font-weight: 600;
  margin-bottom: 8px; color: var(--col-ter);
}

.contact-strip-item p,
.contact-strip-item a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.contact-strip-item a:hover { color: #fff; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  color: inherit;
}

.news-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--col-sec), var(--col-pri));
}

.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card-date { font-size: 13px; color: var(--col-ter); font-weight: 600; margin-bottom: 8px; }

.news-card-title {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 600;
  color: var(--col-pri);
  margin-bottom: 10px; line-height: 1.4;
}

.news-card-excerpt { font-size: 14px; color: #666; line-height: 1.5; }

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-decoration: none;
  color: var(--col-pri);
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--col-sec);
}

.quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: var(--col-sec);
}

.quick-link .arrow { margin-left: auto; color: var(--col-sec); font-size: 18px; }

@media (max-width: 900px) {
  .welcome { grid-template-columns: 1fr; gap: 30px; }
  .image__links__list { grid-template-columns: repeat(2, 1fr); }
  .footer__container { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 15px 10px; }
  .footer__right { align-items: center; }
  .footer__copyright { text-align: center; font-size: 13px; line-height: 1.5; }
  .footer__links { justify-content: center; flex-wrap: wrap; font-size: 13px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .contact-strip .container { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  .hero { height: 300px; }
  .welcome__content__title { font-size: 28px; }
  .image__links__list { grid-template-columns: 1fr 1fr; }
  .image__links__list__item { height: 160px; }
  .news__list { grid-template-columns: 1fr; }
  .sidelinks__list { flex-direction: column; }
  .header { padding: 0 15px; min-height: 60px; }
  .header__logo__title { font-size: 18px; }
  .menu__sidebar {
    padding: 80px 30px;
    flex-direction: column;
    gap: 20px;
  }
  .menu__list__item__link { font-size: 22px; }
  .menu__list__item__sub {
    position: static;
    padding-left: 20px;
  }
  .menu__list__item--subitems > .menu__list__item__link::after { display: none; }
  .footer-links { flex-direction: column; align-items: center; gap: 10px; }
  .news-grid { grid-template-columns: 1fr; }
  .header-logo h1 { font-size: 18px; }
  .page-banner h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  .image__links__list { grid-template-columns: 1fr; }
  .image__links__list__item { height: 140px; }
  .welcome__content__title { font-size: 24px; }
  .header__logo__title { font-size: 16px; }
  .header-logo h1 { font-size: 16px; }
  .header-top { padding: 10px 15px; }
  .quick-links-grid { grid-template-columns: 1fr; }
}

.privacy-accordion { border-radius: 12px; overflow: hidden; }

.privacy-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: var(--col-pri);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: background 0.3s;
  border-radius: 12px;
}

.privacy-accordion__btn:hover { background: #4a4e5a; }

.privacy-accordion__btn.active { border-radius: 12px 12px 0 0; }

.privacy-accordion__icon {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.privacy-accordion__btn.active .privacy-accordion__icon { transform: rotate(45deg); }

.privacy-accordion__panel {
  display: none;
  padding: 25px;
  background: #f5f7fa;
  border: 1px solid #e0e4e8;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.privacy-accordion__panel p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.privacy-accordion__panel p:last-child { margin-bottom: 0; }
