```less













.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
  border-bottom: 6px solid #DCB75F;
}
.site-header > .container {
  position: relative;
}
.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 110px;
}
.site-logo {
  position: relative;
  flex: 0 0 auto;
}
.site-logo-header {
  width: 200px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: width 0.3s ease-in-out;
}
.site-logo-header:hover {
  opacity: 0.5;
}
.shrink .site-logo-header {
  width: 175px;
}
.mobile-nav-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: static;
}
.main-menu {
  position: static;
}
.menu-full-width {
  position: static;
  width: auto;
}
.header-menu {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu > li {
  position: static;
  padding-bottom: 0;
}
.header-menu > li > a {
  position: relative;
  color: #212529;
  text-decoration: none;
}
.header-menu > li > a:hover {
  text-decoration: none;
}
.header-menu > li > a:hover span {
  text-decoration: underline;
}
.header-menu .current-menu-item > a {
  color: #D47C4B;
}
.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: #C37C13;
  margin-left: 10px;
  display: inline-block;
  font-style: normal;
}
.menu-item-has-children:hover > a::after {
  content: "\f077";
}
.header-menu li:not(.menu-item-has-children) a[target="_blank"]::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
  color: #fff;
}
@media (min-width: 992px) {
  .header-menu > li > ul {
    display: none;
  }
  .site-header > .container > .mega-menu {
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 305px 1fr;
    min-height: 371px;
    margin: 0;
    padding: 0;
    background: #F5F5F5;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .mega-menu .submenu-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 371px;
    padding: 3rem;
    color: #152C53;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .mega-menu .submenu-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    z-index: 0;
  }
  .mega-menu .submenu-left h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    color: #152C53;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-align: center;
    text-transform: uppercase;
  }
  .mega-menu .submenu-left h3::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    margin: 1rem auto 0;
    background: #6E5C30;
  }
  .mega-menu .submenu-right {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-content: start;
    gap: 1.5rem 2rem;
    padding: 3rem;
    background: #F5F5F5;
  }
  .mega-menu .submenu-right ul {
    list-style: none;
  }
  .mega-menu .menu-item-has-children > a::after {
    display: none;
    content: none;
  }
  .mega-menu .submenu-right > li {
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mega-menu .submenu-right > li > a {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
    color: #6E5C30;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .mega-menu .submenu-right > li > a:hover {
    color: #495965;
    text-decoration: none;
    transform: translateX(4px);
  }
  .mega-menu .submenu-right > li > a::before {
    display: none;
  }
  .mega-menu .submenu-right li ul li a {
    position: relative;
    display: block;
    width: 100%;
    color: #495965;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .mega-menu .submenu-right li ul li a:hover {
    color: #6E5C30;
    text-decoration: none;
    transform: translateX(6px);
  }
  .mega-menu .submenu-right li ul li a::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    overflow: visible;
  }
  .site-header .container {
    display: flex;
    align-items: center;
  }
  .header-row {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-logo {
    flex: 0 0 auto;
  }
  .site-logo-header {
    width: 160px;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .mobile-nav-wrapper {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .main-menu {
    position: static;
  }
  .navbar-toggler {
    position: relative;
    z-index: 10000;
    padding: 0.5rem;
    border: none;
    background: transparent;
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    max-height: calc(20vh);
    overflow-y: auto;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
  }
  .collapse.navbar-collapse.show {
    display: block !important;
  }
  .header-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .header-menu > li {
    position: relative;
    width: 100%;
    background-color: ;
    padding: 0;
  }
  .header-menu > li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: #fff;
  }
  .header-menu li a {
    display: inline-block;
    width: auto;
    padding: 1rem 0 1rem 1rem;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
  }
  .header-menu .current-menu-item > a {
    color: #fff;
  }
  .header-menu .menu-item-has-children > a::after {
    content: '';
    display: none;
  }
  .header-menu > li > ul {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: none;
    background: #0C486B;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    grid-template-columns: none;
  }
  .header-menu > li > ul .submenu-left {
    display: none;
    background-image: none !important;
  }
  .header-menu > li > ul .submenu-right {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    background: #0C486B;
  }
  .header-menu > li > ul .submenu-right > li {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #0C486B;
  }
  .header-menu > li > ul .submenu-right > li:not(:last-child)::after {
    content: none;
  }
  .header-menu > li > ul .submenu-right > li > a {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2rem;
    color: #fff;
    font-size: 15px;
  }
  .header-menu > li > ul .submenu-right > li > a:before {
    display: none;
  }
  .submenu-right li ul {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    display: none;
    background: #0C486B;
    visibility: visible;
    opacity: 1;
  }
  .submenu-right li ul li {
    width: 100%;
    background: #0C486B;
  }
  .submenu-right li ul li a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: #fff;
    font-size: 14px;
  }
  .submenu-right li ul li a:before {
    display: none;
  }
  .menu-item-has-children.open > ul {
    display: block;
  }
  body.nav-open {
    overflow: hidden;
    height: 100vh;
  }
  .col-for-nav {
    position: static;
  }
}
@media (min-width: 992px) {
  .collapse.navbar-collapse {
    position: relative !important;
    display: flex !important;
  }
}
.alert-bar {
  background-color: #70382D;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
  width: 100%;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-bottom: 4px solid #C27D2A;
}
.alert-bar .alert-content {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}
.alert-bar .alert-content i {
  color: #F8C138;
  font-size: 20px;
  top: 3px;
  position: relative;
  margin-right: 1rem;
}
.alert-bar .alert-content .learn-more {
  color: #F8C138;
  text-decoration: underline;
  text-decoration-color: #C27D2A;
}
.alert-bar .alert-content .learn-more:hover {
  opacity: 0.5;
}
.alert-bar .alert-no-close {
  display: flex;
  align-items: center;
}
.alert-bar .close-alert-btn {
  background: transparent;
  border: none;
  color: #F8C138;
  font-size: 14px;
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  padding: 0;
  margin-left: 15px;
  cursor: pointer;
}
.alert-bar .close-alert-btn:focus {
  outline: none;
}
.alert-bar.hidden {
  display: none;
}
.alert-bar.even {
  background-color: #70382D;
  border-bottom: 4px solid #C27D2A;
}
.alert-bar.odd {
  background-color: #152C53;
  border-bottom: 4px solid #C27D2A;
}
.site-logo-footer {
  width: 165px;
  transition: width 0.3s ease-in-out;
  filter: brightness(0) invert(1);
}
.site-logo-footer:hover {
  opacity: 0.5;
}
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
}
.back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #C37C13;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.back-to-top a:hover {
  background: #000;
  transform: translateY(-5px);
}
.back-to-top .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top svg {
  width: 16px;
  height: 22px;
  fill: #fff;
}
@media (max-width: 767px) {
  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
  .back-to-top a {
    width: 40px;
    height: 40px;
  }
}
.address-column p {
  margin-bottom: 0;
  margin-top: 21px;
}
footer {
  background: #495965;
  color: #F6E1AF;
  padding: 4rem 0 1.5rem;
  font-size: 16px;
  position: relative;
  border-top: 15px solid #BD9435;
}
footer a {
  color: #F6E1AF;
}
footer a:hover {
  color: #F6E1AF;
}
footer .contact-phone,
footer .contact-email {
  margin-top: 1rem;
  margin-bottom: 6px;
}
footer .contact-phone i,
footer .contact-email i {
  margin-right: 5px;
}
footer .contact-email {
  margin-top: 0;
}
footer p {
  font-size: 16px;
  line-height: 2;
}
footer .footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-top: 45px;
}
footer .footer-menu {
  list-style: none;
  padding-left: 0;
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 10px;
}
footer .footer-menu li {
  margin-bottom: 0;
}
footer .footer-menu a {
  font-size: 16px;
  font-weight: 400;
}
footer .footer-menu a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  footer .footer-menu {
    grid-template-columns: 1fr;
  }
}
footer .top-row {
  border-bottom: 1px solid #909090;
  padding-bottom: 2rem;
}
footer .copyright {
  margin-top: 1.5rem;
}
footer .copyright a {
  font-weight: 400;
  text-decoration: underline;
}
footer .copyright a:hover {
  opacity: 0.5;
}
footer .kimbo-footer {
  margin-top: 1.5rem;
}
footer .kimbo-footer a {
  text-decoration: underline;
  font-weight: 400;
}
footer .kimbo-footer a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  footer .text-right {
    text-align: left !important;
  }
}
footer .subscribe-text {
  margin-top: 1rem;
  font-size: 16px;
}
footer .newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
footer .input-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}
footer .social-icon {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 0;
  background-color: transparent;
  text-align: center;
  line-height: 31px;
  margin-right: 1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
}
footer .social-icon i {
  font-size: 20px;
  color: #fff;
  position: relative;
  top: 2px;
}
footer .social-icon:hover {
  background-color: #fff;
  border-color: #fff;
}
footer .social-icon:hover i {
  color: #495965;
}
footer {
  margin-top: 3rem;
}
.home footer {
  margin-top: 0;
}
.footer-bottom-inside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .footer-bottom-inside {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.newsletter-form {
  position: relative;
}
.newsletter-input {
  width: 100%;
  padding: 0.55rem 1rem;
  padding-right: 140px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  height: 39px;
}
.newsletter-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #BF7200;
  color: #fff;
  padding: 0 1.5rem;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease, text-decoration 0.3s ease, color 0.3s ease;
}
.newsletter-button:hover {
  background-color: #a66000;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  text-decoration: underline;
}
.municipal-accordion-heading {
  margin: 3rem 0 0;
}
.municipal-accordion-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
  color: #1d3445;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
.municipal-accordion-heading h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  margin-top: 12px;
  background: #BD9435;
  border-radius: 3px;
}
.municipal-accordion {
  margin: 2rem auto;
}
.municipal-accordion .accordion-item {
  background: #fff;
  border: 1px solid #e3e7eb;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.municipal-accordion .accordion-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.municipal-accordion .accordion-item.active {
  border-color: #005a87;
}
.municipal-accordion .accordion-item.active .accordion-header {
  background: #f5f8fa;
}
.municipal-accordion .accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.municipal-accordion .accordion-item.active .accordion-content {
  max-height: 2000px;
  opacity: 1;
}
.municipal-accordion .accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #1d3445;
  transition: background .25s ease;
  outline: none;
  box-shadow: none;
}
.municipal-accordion .accordion-header:focus,
.municipal-accordion .accordion-header:focus-visible,
.municipal-accordion .accordion-header:active {
  outline: none;
  box-shadow: none;
}
.municipal-accordion .accordion-header:hover {
  background: #f7fafc;
}
.municipal-accordion .accordion-header .accordion-title {
  padding-right: 20px;
}
.municipal-accordion .accordion-header .accordion-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #005a87;
  color: #fff;
  border-radius: 50%;
  transition: transform .3s ease;
  font-size: 14px;
}
.municipal-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .25s ease;
}
.municipal-accordion .accordion-content .accordion-inner {
  padding: 12px 30px 30px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}
.municipal-accordion .accordion-content .accordion-inner p:last-child {
  margin-bottom: 0;
}
.municipal-accordion .accordion-content .accordion-inner a {
  color: #BD9435;
  text-decoration: underline;
}
.municipal-accordion .accordion-content .accordion-inner a:hover {
  color: #9F7825;
}
#MeetingsFrame {
  border: 0;
  margin-top: 2rem;
  right: 2rem;
  position: relative;
}
main ul {
  list-style: none;
}
main ul:has(li:nth-child(11)) {
  columns: 2;
  column-gap: 40px;
}
main ul:has(li:nth-child(11)) li {
  break-inside: avoid;
}
main ul > li::marker {
  content: "";
}
main ul > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.7;
}
main ul > li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
  color: #087f8c;
  pointer-events: none;
}
main ol {
  list-style: none;
  counter-reset: global-list-counter;
}
main ol > li {
  position: relative;
  counter-increment: global-list-counter;
  min-height: 30px;
  padding-left: 43px;
  margin-bottom: 13px;
  line-height: 1.7;
}
main ol > li::marker {
  content: "";
}
main ol > li::before {
  content: counter(global-list-counter);
  position: absolute;
  left: 0;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  border: 1px solid #d8e8e8;
  border-radius: 50%;
  color: #05616b;
  background: linear-gradient(135deg,#e8f6f7,#f4f9f8);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
main li a {
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
main li a:hover {
  color: #087f8c;
}
main ul ul {
  margin-top: 10px;
  margin-bottom: 6px;
  padding-left: 12px;
}
main ul ul > li {
  padding-left: 25px;
  margin-bottom: 8px;
}
main ul ul > li::before {
  content: "\f111";
  top: 9px;
  width: 10px;
  height: 10px;
  font-family: "Font Awesome 6 Free";
  font-size: 6px;
  font-weight: 900;
  line-height: 10px;
  color: #21a6a8;
}
main ol ol {
  margin-top: 10px;
  margin-bottom: 6px;
  padding-left: 12px;
  counter-reset: nested-list-counter;
}
main ol ol > li {
  counter-increment: nested-list-counter;
  min-height: 26px;
  padding-left: 38px;
}
main ol ol > li::before {
  content: counter(nested-list-counter);
  width: 24px;
  height: 24px;
  top: 2px;
  border-radius: 6px;
  border: 1px solid #dceaea;
  color: #21a6a8;
  background: #f1f8f8;
  font-size: 10px;
}
main ul ol {
  margin-top: 10px;
  margin-bottom: 6px;
  padding-left: 12px;
  counter-reset: mixed-list-counter;
}
main ul ol > li {
  counter-increment: mixed-list-counter;
  min-height: 26px;
  padding-left: 38px;
}
main ul ol > li::before {
  content: counter(mixed-list-counter);
  width: 24px;
  height: 24px;
  top: 2px;
  border-radius: 6px;
  border: 1px solid #dceaea;
  color: #087f8c;
  background: #f1f8f8;
  font-size: 10px;
  font-weight: 800;
}
main li:last-child {
  margin-bottom: 0;
}
.scheduled-alert {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 32px 38px;
  margin: 2.5rem 0;
  border: 1px solid;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.scheduled-alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.scheduled-alert__icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 2px;
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15), inset 0 1px 2px rgba(255,255,255,0.25);
}
.scheduled-alert__content {
  flex: 0 1 auto;
  min-width: 0;
  padding: 2px 0;
}
.scheduled-alert__heading {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.scheduled-alert__text {
  margin: 0;
  line-height: 1.65;
}
.scheduled-alert__text p {
  margin-top: 0;
  margin-bottom: 12px;
}
.scheduled-alert__text p:last-child {
  margin-bottom: 0;
}
.scheduled-alert__text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 16px 0 0;
  padding: 0;
}
.scheduled-alert__text ul > li {
  position: relative;
  flex: 0 0 auto;
  padding-left: 27px;
  margin: 0;
  line-height: 1.6;
}
.scheduled-alert__text ul > li::before {
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 18px;
}
.scheduled-alert__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  margin-bottom: 4px;
  padding: 12px 21px;
  border: 0;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-decoration-line: none;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.scheduled-alert__button i {
  font-size: 0.8em;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.scheduled-alert__button:hover,
.scheduled-alert__button:focus,
.scheduled-alert__button:active {
  color: #fff;
  text-decoration: none;
}
.scheduled-alert__button:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
}
.scheduled-alert__button:hover i {
  transform: translateX(3px);
}
.scheduled-alert--warning {
  border-color: #e3c35c;
  background: linear-gradient(135deg,#fffdf6,#fff8df);
}
.scheduled-alert--warning::before {
  background: #d9a300;
}
.scheduled-alert--warning .scheduled-alert__icon {
  background: linear-gradient(135deg,#e4b52a,#c99500);
}
.scheduled-alert--warning .scheduled-alert__heading {
  color: #3d3200;
}
.scheduled-alert--warning .scheduled-alert__button {
  background: linear-gradient(135deg,#c99700,#a97d00);
}
.scheduled-alert--info {
  border-color: #8cc7e8;
  background: linear-gradient(135deg,#f8fcff,#eaf6ff);
}
.scheduled-alert--info::before {
  background: #2980b9;
}
.scheduled-alert--info .scheduled-alert__icon {
  background: linear-gradient(135deg,#3498db,#2475a8);
}
.scheduled-alert--info .scheduled-alert__heading {
  color: #174a68;
}
.scheduled-alert--info .scheduled-alert__button {
  background: linear-gradient(135deg,#2980b9,#216a91);
}
.scheduled-alert--success {
  border-color: #8ac9a7;
  background: linear-gradient(135deg,#f8fcf9,#eaf8f0);
}
.scheduled-alert--success::before {
  background: #29965b;
}
.scheduled-alert--success .scheduled-alert__icon {
  background: linear-gradient(135deg,#32a968,#258650);
}
.scheduled-alert--success .scheduled-alert__heading {
  color: #175c38;
}
.scheduled-alert--success .scheduled-alert__button {
  background: linear-gradient(135deg,#29965b,#207a49);
}
.scheduled-alert--danger {
  border-color: #e0a09a;
  background: linear-gradient(135deg,#fffafa,#fff0ee);
}
.scheduled-alert--danger::before {
  background: #c0392b;
}
.scheduled-alert--danger .scheduled-alert__icon {
  background: linear-gradient(135deg,#d94b3d,#b73529);
}
.scheduled-alert--danger .scheduled-alert__heading {
  color: #7c2118;
}
.scheduled-alert--danger .scheduled-alert__button {
  background: linear-gradient(135deg,#c0392b,#a42f24);
}
.scheduled-alert[hidden] {
  display: none;
}
@media (max-width: 767px) {
  .scheduled-alert {
    gap: 18px;
    padding: 26px 22px;
    align-items: flex-start;
  }
  .scheduled-alert__icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .scheduled-alert__heading {
    font-size: 1.18rem;
    margin-bottom: 9px;
  }
  .scheduled-alert__text {
    line-height: 1.6;
  }
  .scheduled-alert__text ul {
    gap: 9px 18px;
  }
  .scheduled-alert__button {
    margin-top: 18px;
    padding: 11px 18px;
  }
}
li,
p {
  font-size: 18px;
}
a,
main li a {
  color: #BD9435;
}
a:hover,
main li a:hover {
  color: #9F7825;
}
html,
body {
  font-family: "Lato", sans-serif;
}
h1 {
  font-weight: 600;
  color: #495965;
}
h2 {
  font-weight: 600;
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
.text-editor {
  padding-right: 3rem;
}
.text-editor-container {
  margin-top: 2rem;
}
.text-editor-container .row {
  display: flex;
  align-items: stretch;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 1rem;
  padding: 13px 22px;
  background-color: #D47C4B;
  color: #fff;
  border: 2px solid #D47C4B;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button i {
  font-size: 0.78em;
  transition: transform 0.2s ease;
}
.cta-button:hover,
.cta-button:focus {
  background-color: #c7662f;
  border-color: #c7662f;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}
.cta-button:hover i,
.cta-button:focus i {
  transform: translate(2px,-2px);
}
.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.text-sidebar {
  position: relative;
  padding: 30px;
  background: #f7f3ef;
  border: 1px solid #e8dfd7;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.text-sidebar > h2 {
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #BD9435;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}
.text-sidebar > h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  background: #BD9435;
  border-radius: 3px;
}
.text-sidebar h3 {
  margin: 0 0 4px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}
.text-sidebar h4 {
  margin: 0 0 16px;
  color: #777;
  font-weight: 500;
  line-height: 1.4;
}
.text-sidebar p {
  margin: 0 0 8px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
}
.text-sidebar a {
  display: inline-block;
  color: #BD9435;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.text-sidebar a:hover {
  color: #B96338;
  text-decoration: underline;
}
.text-sidebar div {
  margin: 0;
}
.text-sidebar ul,
.text-sidebar ol {
  margin: 12px 0;
  padding-left: 20px;
}
.text-sidebar ul li,
.text-sidebar ol li {
  margin-bottom: 6px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.5;
}
.text-sidebar--image {
  height: 100%;
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: 12px 12px 0 rgba(212,124,75,0.12);
  overflow: hidden;
}
.text-sidebar--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.text-sidebar--image--contain {
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  overflow: visible;
}
.text-sidebar--image--contain img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 991px) {
  .text-editor {
    padding-right: 0;
  }
  .text-editor-container .row {
    display: block;
  }
  .text-sidebar {
    margin-top: 30px;
  }
  .text-sidebar--image {
    height: auto;
    min-height: 0;
  }
  .text-sidebar--image img {
    height: 300px;
    min-height: 0;
    object-fit: cover;
  }
  .text-sidebar--image--contain {
    height: auto;
    min-height: 0;
    margin-top: 30px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .text-sidebar--image--contain img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
  }
}
.modern-tabs {
  margin: 3rem 0;
}
.modern-tabs__intro {
  max-width: 850px;
  margin-bottom: 45px;
}
.modern-tabs__heading {
  margin: 0 0 12px;
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
}
.modern-tabs__description {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}
.modern-tabs__description p {
  margin: 0 0 1rem;
}
.modern-tabs__description p:last-child {
  margin-bottom: 0;
}
.modern-tabs__layout {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 70px;
}
.modern-tabs__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e5e5e5;
}
.modern-tabs__button {
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 15px 14px 20px;
  background: none;
  border: 0;
  color: #888;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.25s ease, background-color 0.2s ease;
}
.modern-tabs__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 3px;
  background: #D47C4B;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.modern-tabs__button .modern-tabs__number {
  color: #aaa;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.modern-tabs__button h3 {
  font-size: 20px;
}
.modern-tabs__button i {
  color: #bbb;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.modern-tabs__button:hover {
  padding-left: 25px;
  color: #333;
  background: rgba(0,0,0,0.015);
}
.modern-tabs__button:hover .modern-tabs__number {
  color: #D47C4B;
}
.modern-tabs__button:hover i {
  opacity: 1;
  transform: translateX(0);
}
.modern-tabs__button.is-active {
  padding-left: 25px;
  color: #222;
  background: rgba(0,0,0,0.02);
}
.modern-tabs__button.is-active::before {
  transform: scaleY(1);
}
.modern-tabs__button.is-active .modern-tabs__number {
  color: #D47C4B;
}
.modern-tabs__button.is-active i {
  color: #D47C4B;
  opacity: 1;
  transform: translateX(0);
}
.modern-tabs__button:focus {
  outline: none;
}
.modern-tabs__button:focus-visible {
  outline: 2px solid #D47C4B;
  outline-offset: 3px;
}
.modern-tabs__mobile-nav {
  display: none;
  position: relative;
}
.modern-tabs__select {
  width: 100%;
  padding: 14px 48px 14px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.modern-tabs__select:hover {
  border-color: #ccc;
}
.modern-tabs__select:focus,
.modern-tabs__select:focus-visible {
  outline: none;
  border-color: #D47C4B;
  box-shadow: none;
}
.modern-tabs__select-arrow {
  position: absolute;
  top: 50%;
  right: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #D47C4B;
  pointer-events: none;
  transform: translateY(-50%);
}
.modern-tabs__select-arrow i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.modern-tabs__content {
  position: relative;
  min-width: 0;
}
.modern-tabs__panel {
  display: none;
  padding: 5px 0 30px;
}
.modern-tabs__panel.is-active {
  display: block;
  animation: tabContentReveal 0.4s ease both;
}
.modern-tabs__panel.is-active h2,
.modern-tabs__panel.is-active h3 {
  animation: tabElementReveal 0.4s ease 0.05s both;
}
.modern-tabs__panel.is-active p {
  animation: tabElementReveal 0.4s ease 0.12s both;
}
.modern-tabs__panel.is-active ul,
.modern-tabs__panel.is-active ol {
  animation: tabElementReveal 0.4s ease 0.16s both;
}
.modern-tabs__panel.is-active .modern-tabs__link {
  animation: tabElementReveal 0.4s ease 0.2s both;
}
.modern-tabs__inner {
  position: relative;
  max-width: 850px;
  padding-left: 25px;
}
.modern-tabs__inner::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 3px;
  height: 55px;
  background: #D47C4B;
  border-radius: 3px;
  animation: tabAccentReveal 0.4s ease both;
}
.modern-tabs__inner h2,
.modern-tabs__inner h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #333;
}
.modern-tabs__inner p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.7;
}
.modern-tabs__inner ul,
.modern-tabs__inner ol {
  margin-top: 1rem;
}
.modern-tabs__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: #D47C4B;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.modern-tabs__link i {
  font-size: 0.8em;
  transition: transform 0.2s ease;
}
.modern-tabs__link:hover {
  gap: 13px;
  color: #be612e;
  text-decoration: none;
}
.modern-tabs__link:hover i {
  transform: translateX(2px);
}
@keyframes tabContentReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tabElementReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tabAccentReveal {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (max-width: 991px) {
  .modern-tabs__layout {
    grid-template-columns: 220px minmax(0,1fr);
    gap: 40px;
  }
  .modern-tabs__button {
    font-size: 0.88rem;
  }
}
@media (max-width: 767px) {
  .modern-tabs {
    margin: 2rem 0;
  }
  .modern-tabs__layout {
    display: block;
  }
  .modern-tabs__nav {
    display: none;
  }
  .modern-tabs__mobile-nav {
    display: block;
  }
  .modern-tabs__content {
    margin-top: 30px;
  }
  .modern-tabs__panel {
    padding: 10px 0 20px;
  }
  .modern-tabs__inner {
    padding-left: 18px;
  }
  .modern-tabs__inner::before {
    width: 2px;
    height: 45px;
  }
  .modern-tabs__intro {
    margin-bottom: 30px;
  }
  .modern-tabs__heading {
    font-size: 1.6rem;
  }
  .modern-tabs__description {
    font-size: 0.95rem;
  }
}
.single-image {
  width: 100%;
  height: 515px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 2rem;
}
.single-image__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.22,1,0.36,1);
}
.single-image.is-visible .single-image__image {
  opacity: 1;
  transform: translateY(0);
}
.vertical-cards-section {
  margin-top: 2rem;
  margin-bottom: 5rem;
}
.vertical-cards-section .vertical-cards__heading {
  margin-bottom: 40px;
}
.vertical-cards-section .vertical-cards__row {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 24px;
}
.vertical-cards-section .vertical-cards__column {
  width: 100%;
  min-width: 0;
}
.vertical-card {
  --top-color: #EDE7E1;
  --bottom-color: #F7F6F4;
  --accent-color: #D47C4B;
  --accent-hover: #C36D3F;
  --card-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--card-height);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  background-color: var(--bottom-color);
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.vertical-card:hover {
  text-decoration: none;
  transform: translateY(-6px);
  border-color: rgba(212,124,75,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.vertical-card:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}
.vertical-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30%;
  background-color: var(--top-color);
}
.vertical-card__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70%;
  padding: 32px;
  text-align: center;
  background-color: var(--bottom-color);
}
.vertical-card__title {
  margin: 0;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  transition: color 0.25s ease;
}
.vertical-card__circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg,#ffffff 0%,#f5f3f0 100%);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.04);
  transform: translate(-50%,50%);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, background 0.3s ease;
}
.vertical-card__circle i {
  font-size: 1.35rem;
  color: var(--accent-color);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), color 0.3s ease;
}
.vertical-card:hover .vertical-card__circle {
  transform: translate(-50%,50%) scale(1.1);
  background: linear-gradient(145deg,var(--accent-color) 0%,var(--accent-hover) 100%);
  box-shadow: 0 10px 24px rgba(212,124,75,0.28);
}
.vertical-card:hover .vertical-card__circle i {
  color: #fff;
  transform: translateX(3px);
}
@media (max-width: 1199px) {
  .vertical-cards-section .vertical-cards__row {
    grid-template-columns: repeat(3,1fr);
  }
}
@media (max-width: 991px) {
  .vertical-cards-section .vertical-cards__row {
    grid-template-columns: repeat(2,1fr);
  }
  .vertical-card__title {
    font-size: 1.35rem;
  }
  .vertical-card__bottom {
    padding: 28px;
  }
}
@media (max-width: 575px) {
  .vertical-cards-section .vertical-cards__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vertical-card {
    --card-height: 360px;
  }
  .vertical-card__bottom {
    padding: 24px;
  }
  .vertical-card__title {
    font-size: 1.3rem;
  }
  .vertical-card__circle {
    width: 58px;
    height: 58px;
  }
  .vertical-card__circle i {
    font-size: 1.2rem;
  }
}
.vertical-cards-section--horizontal .vertical-card__external-icon {
  margin-left: 14px;
  font-size: 14px;
  vertical-align: 0.15em;
}
.vertical-cards-section--horizontal .vertical-cards__row {
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.vertical-cards-section--horizontal .vertical-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  height: 58px;
  padding: 13px 22px;
  background-color: #D47C4B;
  color: #fff;
  border: 2px solid #D47C4B;
  border-radius: 10px;
  box-shadow: none;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vertical-cards-section--horizontal .vertical-card--horizontal .vertical-card__top {
  display: none;
}
.vertical-cards-section--horizontal .vertical-card--horizontal .vertical-card__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  text-align: center;
}
.vertical-cards-section--horizontal .vertical-card--horizontal .vertical-card__title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.vertical-cards-section--horizontal .vertical-card--horizontal:hover,
.vertical-cards-section--horizontal .vertical-card--horizontal:focus {
  background-color: #c7662f;
  border-color: #c7662f;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}
.vertical-cards-section--horizontal .vertical-card--horizontal:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.vertical-cards-section--horizontal .vertical-card--horizontal:focus-visible {
  outline: 3px solid #D47C4B;
  outline-offset: 4px;
}
@media (max-width: 991px) {
  .vertical-cards-section--horizontal .vertical-cards__row {
    grid-template-columns: repeat(2,1fr);
  }
  .vertical-cards-section--horizontal .vertical-card--horizontal {
    height: 58px;
    min-height: 58px;
    padding: 13px 20px;
  }
  .vertical-cards-section--horizontal .vertical-card--horizontal .vertical-card__title {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .vertical-cards-section--horizontal .vertical-cards__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vertical-cards-section--horizontal .vertical-card--horizontal {
    height: 58px;
    min-height: 58px;
    padding: 13px 18px;
  }
  .vertical-cards-section--horizontal .vertical-card--horizontal .vertical-card__title {
    font-size: 0.95rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vertical-card,
  .vertical-card__circle,
  .vertical-card__circle i {
    transition: none;
  }
}
.image-carousel-section {
  width: 100%;
}
.image-carousel-section .image-carousel {
  position: relative;
  width: 100%;
  height: 79vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}
.image-carousel-section .image-carousel--contained {
  height: 515px;
  border-radius: 10px;
}
.image-carousel-section .image-carousel__slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease;
}
.image-carousel-section .image-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.image-carousel-section .image-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.image-carousel-section .image-carousel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg,rgba(248,246,241,0.6) 0%,rgba(248,246,241,0.45) 35%,rgba(248,246,241,0.2) 60%,rgba(248,246,241,0.05) 85%,rgba(248,246,241,0) 100%);
}
.image-carousel-section .image-carousel__content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 3;
  transform: translateY(-50%);
}
.image-carousel-section .image-carousel__subheading {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #080605;
}
.image-carousel-section .image-carousel__heading {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: 0;
  width: 50%;
  font-size: 70px;
  line-height: 1.05;
  font-weight: 700;
  color: #495965;
}
.image-carousel-section .image-carousel__search {
  display: flex;
  width: 100%;
  max-width: 580px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(8,6,5,0.12);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(8,6,5,0.14);
  overflow: hidden;
}
.image-carousel-section .image-carousel__search input {
  flex: 1;
  height: 58px;
  padding: 0 16px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #080605;
}
.image-carousel-section .image-carousel__search input::placeholder {
  color: #B8B8B8;
  font-size: 15px;
}
.image-carousel-section .image-carousel__search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg,#BD9435 0%,#F6E1AF 100%);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.image-carousel-section .image-carousel__search button:hover {
  opacity: 0.9;
}
.image-carousel-section .image-carousel__search button:focus {
  outline: none;
}
.image-carousel-section .image-carousel__search button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}
.image-carousel-section .image-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  transform: translateX(-50%);
}
.image-carousel-section .image-carousel__dot {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  appearance: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.image-carousel-section .image-carousel__dot:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.image-carousel-section .image-carousel__dot.is-active {
  width: 17px;
  height: 17px;
  background: #BD9435;
  border-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(189,148,53,0.35), 0 3px 12px rgba(0,0,0,0.25);
  animation: carousel-dot-pulse 2s ease-out infinite;
}
.image-carousel-section .image-carousel__dot:focus {
  outline: none;
}
.image-carousel-section .image-carousel__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}
@keyframes carousel-dot-pulse {
  .image-carousel-section .image-carousel 0% {
    box-shadow: 0 0 0 3px rgba(189,148,53,0.35), 0 3px 12px rgba(0,0,0,0.25);
  }
  .image-carousel-section .image-carousel 50% {
    box-shadow: 0 0 0 7px rgba(189,148,53,0.15), 0 3px 14px rgba(0,0,0,0.25);
  }
  .image-carousel-section .image-carousel 100% {
    box-shadow: 0 0 0 3px rgba(189,148,53,0.35), 0 3px 12px rgba(0,0,0,0.25);
  }
}
@media (max-width: 575px) {
  .image-carousel-section .image-carousel .image-carousel-section .image-carousel__dots {
    bottom: 15px;
    gap: 9px;
  }
  .image-carousel-section .image-carousel .image-carousel-section .image-carousel__dot {
    width: 10px;
    height: 10px;
  }
  .image-carousel-section .image-carousel .image-carousel-section .image-carousel__dot.is-active {
    width: 14px;
    height: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-carousel-section .image-carousel .image-carousel__dot {
    transition: none;
  }
  .image-carousel-section .image-carousel .image-carousel__dot.is-active {
    animation: none;
  }
}
@media (max-width: 991px) {
  .image-carousel-section .image-carousel {
    height: 55vh;
    min-height: 350px;
  }
  .image-carousel-section .image-carousel__subheading {
    font-size: 20px;
  }
  .image-carousel-section .image-carousel__heading {
    font-size: 55px;
  }
  .image-carousel-section .image-carousel__dots {
    bottom: 18px;
  }
}
@media (max-width: 575px) {
  .image-carousel-section {
    margin-top: 1.5rem;
  }
  .image-carousel-section .image-carousel {
    height: 55vh;
    min-height: 280px;
    max-height: 500px;
  }
  .image-carousel-section .image-carousel__content .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .image-carousel-section .image-carousel__subheading {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .image-carousel-section .image-carousel__heading {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.1;
  }
  .image-carousel-section .image-carousel__search {
    max-width: 100%;
  }
  .image-carousel-section .image-carousel__search input {
    height: 50px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .image-carousel-section .image-carousel__search button {
    height: 50px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .image-carousel-section .image-carousel__dots {
    bottom: 15px;
    gap: 7px;
  }
  .image-carousel-section .image-carousel__dot {
    width: 8px;
    height: 8px;
  }
}
.land-acknowledgement {
  position: relative;
  overflow: hidden;
  background: #F6E1AF;
}
.land-acknowledgement__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 250px;
  width: 100%;
}
.land-acknowledgement__layout:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(70,70,70,0.15);
  z-index: 5;
  pointer-events: none;
}
.land-acknowledgement__content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 8vw 30px 0;
  overflow: hidden;
}
.land-acknowledgement__content:after {
  content: '';
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: rgba(139,98,78,0.18);
  z-index: 3;
  pointer-events: none;
}
.land-acknowledgement__content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  padding-left: 8vw;
}
.land-acknowledgement__content-inner:after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  margin-top: 25px;
  background: #8b624e;
  opacity: 0.45;
}
.land-acknowledgement__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8b624e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.land-acknowledgement__eyebrow:before {
  content: '';
  width: 34px;
  height: 1px;
  background: #8b624e;
  flex-shrink: 0;
}
.land-acknowledgement__heading {
  position: relative;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}
.land-acknowledgement__heading:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 3px;
  height: 46px;
  background: #8b624e;
  border-radius: 3px;
}
.land-acknowledgement__text {
  max-width: 520px;
  color: #080604;
  font-size: 20px;
  line-height: 1.6;
}
.land-acknowledgement__text p {
  margin: 0 0 14px;
}
.land-acknowledgement__text p:last-child {
  margin-bottom: 0;
}
.land-acknowledgement__text a {
  color: #8b624e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.land-acknowledgement__text a:hover {
  color: #604535;
}
.land-acknowledgement__image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
.land-acknowledgement__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.land-acknowledgement__image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,0.035),transparent 30%);
  pointer-events: none;
}
.land-acknowledgement__image:hover img {
  transform: scale(1.025);
}
@media (min-width: 1400px) {
  .land-acknowledgement__content {
    padding-right: 7vw;
  }
  .land-acknowledgement__content-inner {
    padding-left: 8vw;
  }
}
@media (max-width: 1199px) {
  .land-acknowledgement__layout {
    grid-template-columns: 1fr 1fr;
    min-height: 250px;
  }
  .land-acknowledgement__content {
    padding: 50px 50px 50px 0;
  }
  .land-acknowledgement__content:after {
    top: 15%;
    height: 70%;
  }
  .land-acknowledgement__content:before {
    width: 350px;
    height: 350px;
    right: -220px;
    bottom: -220px;
  }
  .land-acknowledgement__content-inner {
    padding-left: 50px;
  }
  .land-acknowledgement__heading {
    font-size: 2.3rem;
  }
  .land-acknowledgement__heading:before {
    left: -16px;
    height: 40px;
  }
  .land-acknowledgement__image {
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .land-acknowledgement__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .land-acknowledgement__content {
    padding: 60px 30px;
  }
  .land-acknowledgement__content:before {
    width: 350px;
    height: 350px;
    right: -230px;
    bottom: -230px;
  }
  .land-acknowledgement__content:after {
    display: none;
  }
  .land-acknowledgement__content-inner {
    max-width: none;
    padding-left: 0;
  }
  .land-acknowledgement__content-inner:after {
    margin-top: 30px;
  }
  .land-acknowledgement__eyebrow {
    margin-bottom: 20px;
    font-size: 0.68rem;
  }
  .land-acknowledgement__heading {
    margin-bottom: 22px;
    font-size: 2rem;
    line-height: 1.1;
  }
  .land-acknowledgement__heading:before {
    left: -14px;
    top: 3px;
    width: 2px;
    height: 34px;
  }
  .land-acknowledgement__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .land-acknowledgement__image {
    min-height: 320px;
    height: 320px;
  }
  .land-acknowledgement__layout:after {
    bottom: 0;
  }
}
.news-information-section {
  padding-bottom: 4rem;
  padding-top: 4rem;
}
.news-information-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  color: #495965;
}
.news-information-section__header h2 {
  margin: 0;
}
.news-information-section__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.85rem 1.5rem;
  background: #fff;
  color: #080605;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.news-information-section__view-all:hover {
  background: #F6E1AF;
  color: #080605;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.news-information-section__view-all:focus-visible {
  outline: 2px solid #080605;
  outline-offset: 3px;
}
.news-card {
  height: 330px;
}
.news-card__link {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  border-radius: 10px;
}
.news-card__link:hover .news-card__image img {
  transform: scale(1.04);
}
.news-card__link:hover .news-card__title {
  text-decoration: underline;
}
.news-card__image {
  position: relative;
  aspect-ratio: 1.3333333333333;
  overflow: hidden;
  background: #eee;
}
.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #ddd;
}
.news-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: #EFDFB7;
}
.news-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 0.5rem;
  color: #372E18;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  height: 52px;
}
.news-card__date {
  display: block;
  color: #495965;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
}
@media (max-width: 767px) {
  .news-information-section {
    padding-bottom: 3rem;
    padding-top: 2rem;
  }
  .news-information-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .news-information-section__view-all {
    align-self: flex-start;
  }
  .news-card {
    margin-bottom: 1.5rem;
  }
}
.upcoming-events {
  position: relative;
  width: 100%;
  padding: 3rem 0 3rem;
  background: #DCB75F;
}
.upcoming-events__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.upcoming-events__heading {
  margin: 0;
}
.upcoming-events__filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.upcoming-events__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  padding: 0.85rem 1.5rem;
  background: #fff;
  color: #080605;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.upcoming-events__filter:hover {
  background: #372E18;
  color: #fff;
  text-decoration: none;
}
.upcoming-events__filter:focus-visible {
  outline: 2px solid #372E18;
  outline-offset: 3px;
}
.upcoming-events__filter:focus {
  outline: none;
}
.upcoming-events__filter.is-active {
  background: #372E18;
  color: #fff;
}
.upcoming-events__filter.is-active:hover {
  background: #372E18;
  color: #fff;
}
.upcoming-events__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.upcoming-events__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: #fff;
  color: #080605;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.upcoming-events__view-all:hover {
  background: #080605;
  color: #fff;
  text-decoration: none;
}
.upcoming-events__view-all:focus-visible {
  outline: 2px solid #080605;
  outline-offset: 3px;
}
.upcoming-events__grid {
  width: 100%;
}
.upcoming-events__event-group {
  display: none;
}
.upcoming-events__event-group.is-active {
  display: block;
}
.upcoming-events__cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}
.upcoming-events__card {
  position: relative;
  display: flex;
  min-height: 180px;
  background: #EFDFB7;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.upcoming-events__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.upcoming-events__card-bar {
  flex: 0 0 6px;
  background: #6E5C30;
}
.upcoming-events__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 1.75rem;
}
.upcoming-events__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}
.upcoming-events__title a {
  color: #6E5C30;
  font-weight: 600;
  text-decoration: none;
}
.upcoming-events__title a:hover {
  text-decoration: underline;
}
.upcoming-events__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 400;
  color: #6E5C30;
}
.upcoming-events__date-day,
.upcoming-events__date-time {
  font-size: 15px;
  font-weight: 400;
  color: #6E5C30;
}
.upcoming-events__empty {
  margin: 0;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  color: #666;
  text-align: center;
}
@media (max-width: 991px) {
  .upcoming-events__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
  .upcoming-events__cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .upcoming-events {
    padding: 3.5rem 0;
  }
  .upcoming-events__header {
    margin-bottom: 1.5rem;
  }
  .upcoming-events__filters {
    width: 100%;
    gap: 0.35rem;
  }
  .upcoming-events__filter {
    font-size: 0.8rem;
    padding: 0.85rem 1.5rem;
  }
  .upcoming-events__card {
    min-height: 160px;
  }
  .upcoming-events__card-content {
    padding: 1.4rem;
  }
  .upcoming-events__title {
    font-size: 1.1rem;
  }
  .upcoming-events__footer {
    margin-top: 2rem;
  }
}
.audience-tabs {
  padding: 5rem 0 2rem;
  margin-top: -12rem;
  position: relative;
  z-index: 99;
}
.audience-tabs__header {
  margin-bottom: 2.5rem;
}
.audience-tabs__heading {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
}
.audience-tabs__nav {
  display: flex;
  width: 100%;
  margin-bottom: 3rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 10px 10px 0 0;
}
.audience-tabs__tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 33.333%;
  min-height: 150px;
  padding: 1.75rem 2rem;
  margin: 0;
  border: 0;
  border-right: 1px solid #e2e2e2;
  background: #fff;
  color: #222;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.35s ease, color 0.25s ease, box-shadow 0.35s ease;
}
.audience-tabs__tab:first-child {
  border-radius: 10px 0 0 0;
}
.audience-tabs__tab:last-child {
  border-radius: 0 10px 0 0;
  border-right: 0;
}
.audience-tabs__tab:hover {
  background: #f8f8f8;
}
.audience-tabs__tab:focus {
  outline: none;
}
.audience-tabs__tab:focus-visible {
  outline: 2px solid #222;
  outline-offset: -2px;
  z-index: 2;
}
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon {
  color: #DCB75F;
}
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg {
  color: #DCB75F;
}
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg path[fill]:not([fill="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg line[fill]:not([fill="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg polyline[fill]:not([fill="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg polygon[fill]:not([fill="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg circle[fill]:not([fill="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg rect[fill]:not([fill="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg ellipse[fill]:not([fill="none"]) {
  fill: currentColor;
}
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg path[stroke]:not([stroke="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg line[stroke]:not([stroke="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg polyline[stroke]:not([stroke="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg polygon[stroke]:not([stroke="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg circle[stroke]:not([stroke="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg rect[stroke]:not([stroke="none"]),
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-icon svg ellipse[stroke]:not([stroke="none"]) {
  stroke: currentColor;
}
.audience-tabs__tab:not(.is-active) .audience-tabs__tab-arrow-circle {
  border-color: #DCB75F;
  color: #DCB75F;
}
.audience-tabs__tab.is-active {
  background: #DCB75F;
  color: #222;
}
.audience-tabs__tab.is-active .audience-tabs__tab-title {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg {
  color: #495965;
}
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg path[fill]:not([fill="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg line[fill]:not([fill="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg polyline[fill]:not([fill="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg polygon[fill]:not([fill="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg circle[fill]:not([fill="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg rect[fill]:not([fill="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg ellipse[fill]:not([fill="none"]) {
  fill: currentColor;
}
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg path[stroke]:not([stroke="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg line[stroke]:not([stroke="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg polyline[stroke]:not([stroke="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg polygon[stroke]:not([stroke="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg circle[stroke]:not([stroke="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg rect[stroke]:not([stroke="none"]),
.audience-tabs__tab.is-active .audience-tabs__tab-icon svg ellipse[stroke]:not([stroke="none"]) {
  stroke: currentColor;
}
.audience-tabs__tab.is-active .audience-tabs__tab-arrow-circle {
  border-color: #495965;
  color: #495965;
}
.audience-tabs__tab.is-active:hover {
  background: #DCB75F;
}
.audience-tabs__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}
.audience-tabs__tab-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.audience-tabs__tab-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  padding-right: 2rem;
  padding-bottom: 1rem;
}
.audience-tabs__tab-title {
  display: block;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 700;
}
.audience-tabs__tab-description {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #372E18;
  font-weight: 500;
}
.audience-tabs__tab-arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-tabs__tab-arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid #DCB75F;
  border-radius: 50%;
  color: #DCB75F;
  font-size: 0.55rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.audience-tabs__tab-arrow-circle i {
  line-height: 1;
}
.audience-tabs__panel[hidden] {
  display: none;
}
.audience-tabs__panel.is-active {
  display: block;
}
.audience-tabs__grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1.5rem;
}
.audience-tabs .audience-tabs__panel.is-active .audience-tabs__card {
  animation: audienceTabsCardFadeIn 0.7s ease-out both;
}
.audience-tabs .audience-tabs__panel.is-active .audience-tabs__card:nth-child(1) {
  animation-delay: 0s;
}
.audience-tabs .audience-tabs__panel.is-active .audience-tabs__card:nth-child(2) {
  animation-delay: 0.15s;
}
.audience-tabs .audience-tabs__panel.is-active .audience-tabs__card:nth-child(3) {
  animation-delay: 0.30s;
}
.audience-tabs .audience-tabs__panel.is-active .audience-tabs__card:nth-child(4) {
  animation-delay: 0.45s;
}
@keyframes audienceTabsCardFadeIn {
  .audience-tabs from {
    opacity: 0;
    transform: translateY(30px);
  }
  .audience-tabs to {
    opacity: 1;
    transform: translateY(0);
  }
}
.audience-tabs__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  color: #222;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  padding: 3rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.audience-tabs__card:nth-child(1) {
  background: linear-gradient(180deg,#F5F5F5 0%,#F4F6F6 20%,#F1F6F7 35%,#ECF4F5 50%,#E5F1F2 65%,#DCEDEF 78%,#D2E9EC 90%,#C8E5E9 100%);
  border: 1px solid #C8E5E9;
}
.audience-tabs__card:nth-child(2) {
  background: linear-gradient(180deg,rgba(220,183,95,0) 0%,rgba(220,183,95,0.03) 35%,rgba(220,183,95,0.1) 60%,rgba(220,183,95,0.2) 80%,rgba(220,183,95,0.35) 100%), #F5F5F5;
  border: 1px solid #E5D4A8;
}
.audience-tabs__card:nth-child(3) {
  background: linear-gradient(180deg,rgba(141,182,62,0) 0%,rgba(141,182,62,0.03) 35%,rgba(141,182,62,0.1) 60%,rgba(141,182,62,0.2) 80%,rgba(141,182,62,0.35) 100%), #F5F5F5;
  border: 1px solid #C5D89D;
}
.audience-tabs__card:nth-child(4) {
  background: linear-gradient(180deg,rgba(212,124,75,0) 0%,rgba(212,124,75,0.03) 35%,rgba(212,124,75,0.1) 60%,rgba(212,124,75,0.2) 80%,rgba(212,124,75,0.35) 100%), #F5F5F5;
  border: 1px solid #E5B69F;
}
.audience-tabs__card:hover {
  color: #222;
  text-decoration: none;
  transform: translateY(-5px);
  border-color: #d5d5d5;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.audience-tabs__card:hover .audience-tabs__card-icon {
  transform: translateY(-3px);
}
.audience-tabs__card:focus {
  outline: none;
}
.audience-tabs__card:focus-visible {
  outline: 2px solid #222;
  outline-offset: 4px;
}
.audience-tabs__card-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  transition: transform 0.25s ease;
}
.audience-tabs__card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.audience-tabs__card-title {
  position: relative;
  z-index: 2;
  display: block;
  width: 53%;
  padding-top: 1rem;
  color: #495965;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 991px) {
  .audience-tabs {
    padding: 4rem 0;
  }
  .audience-tabs__tab {
    min-height: 140px;
    padding: 1.5rem;
    gap: 1rem;
  }
  .audience-tabs__tab-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .audience-tabs__tab-title {
    font-size: 1rem;
  }
  .audience-tabs__tab-description {
    font-size: 0.85rem;
  }
  .audience-tabs__tab-arrow {
    right: 1rem;
    bottom: 1rem;
  }
  .audience-tabs__tab-arrow-circle {
    width: 30px;
    height: 30px;
    font-size: 0.55rem;
  }
  .audience-tabs__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 767px) {
  .audience-tabs {
    padding: 3rem 0;
  }
  .audience-tabs__heading {
    font-size: 2rem;
  }
  .audience-tabs__header {
    margin-bottom: 2rem;
  }
  .audience-tabs__nav {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .audience-tabs__tab {
    width: 100%;
    min-height: 110px;
    padding: 1.25rem 1.5rem;
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .audience-tabs__tab:first-child {
    border-radius: 10px 10px 0 0;
  }
  .audience-tabs__tab:last-child {
    border-radius: 0;
    border-bottom: 0;
  }
  .audience-tabs__tab-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }
  .audience-tabs__tab-arrow {
    right: 1rem;
    bottom: 1rem;
  }
  .audience-tabs__tab-arrow-circle {
    width: 28px;
    height: 28px;
    font-size: 0.5rem;
  }
  .audience-tabs__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .audience-tabs__card {
    min-height: 160px;
  }
}
table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-size: 1rem;
  line-height: 1.5;
  background: #fff;
}
table th,
table td {
  padding: 14px 18px;
  text-align: left;
  border: 1px solid #ddd;
  vertical-align: middle;
}
table th {
  background: #f3f1ee;
  color: #222;
  font-weight: 600;
}
table td {
  color: #444;
}
table tr:nth-child(even) td {
  background: #fafafa;
}
table tr:hover td {
  background: #f7f3ef;
}
@media (max-width: 767px) {
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.single-news {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.single-news__article {
  width: 100%;
  margin: 0 auto;
}
.single-news__featured-image {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  background: #EFDFB7;
}
.single-news__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.single-news__featured-image:hover img {
  transform: scale(1.015);
}
.single-news__featured-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(to top,rgba(55,46,24,0.12),transparent);
  pointer-events: none;
}
.single-news__content-wrapper {
  max-width: 850px;
}
.single-news__date {
  display: block;
  margin-bottom: 0.75rem;
  color: #495965;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}
.single-news__title {
  margin: 0 0 1.5rem;
  color: #372E18;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}
.single-news__content {
  color: #080605;
  font-size: 1rem;
  line-height: 1.7;
}
.single-news__content p {
  margin-bottom: 1.25rem;
}
.single-news__content h2,
.single-news__content h3,
.single-news__content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #372E18;
}
.single-news__content a {
  color: #6E5C30;
  text-decoration: underline;
}
.single-news__content a:hover {
  color: #372E18;
}
.single-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.single-news__content ul,
.single-news__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.single-news__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #EFDFB7;
  border-left: 5px solid #6E5C30;
  border-radius: 0 10px 10px 0;
}
.single-news__related {
  margin-top: 4rem;
}
.single-news__related-header {
  margin-bottom: 2rem;
}
.single-news__related-header h2 {
  margin: 0;
  color: #495965;
}
.single-news__related-card {
  height: 330px;
  margin-bottom: 1.5rem;
}
.single-news__related-link {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
}
.single-news__related-link:hover .single-news__related-image img {
  transform: scale(1.04);
}
.single-news__related-link:hover .single-news__related-title {
  text-decoration: underline;
}
.single-news__related-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;
}
.single-news__related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.single-news__related-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  background: #EFDFB7;
}
.single-news__related-date {
  display: block;
  margin-bottom: 0.5rem;
  color: #495965;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
}
.single-news__related-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 52px;
  margin: 0;
  color: #372E18;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .single-news {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .single-news__title {
    font-size: 2rem;
  }
  .single-news__featured-image {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .single-news {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .single-news__featured-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  }
  .single-news__featured-image::after {
    height: 20%;
  }
  .single-news__title {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
  }
  .single-news__related {
    margin-top: 3rem;
  }
  .single-news__related-header {
    margin-bottom: 1.5rem;
  }
  .single-news__related-card {
    height: 300px;
  }
}
#breadcrumbs {
  margin-top: 3rem;
}
.highlight-card {
  padding: 3rem 0;
}
.highlight-card__inner {
  position: relative;
  padding: 2.5rem 3rem;
  background: #F8F1DE;
  border-radius: 8px;
  border-left: 8px solid #DCB75F;
}
.highlight-card__heading {
  margin: 0 0 1rem;
  color: #495965;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}
.highlight-card__content {
  color: #495965;
  font-size: 1rem;
  line-height: 1.7;
}
.highlight-card__content p {
  margin-bottom: 1rem;
}
.highlight-card__content p:last-child {
  margin-bottom: 0;
}
.highlight-card__content a {
  color: #495965;
  font-weight: 600;
  text-decoration: underline;
}
.highlight-card__content a:hover {
  color: #DCB75F;
}
.highlight-card__content ul,
.highlight-card__content ol {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .highlight-card {
    padding: 2rem 0;
  }
  .highlight-card__inner {
    padding: 2rem 1.5rem;
    border-left-width: 6px;
  }
  .highlight-card__heading {
    font-size: 1.6rem;
  }
}
.people-grid-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.people-grid__heading {
  margin-bottom: 2rem;
}
.people-grid__heading h2 {
  margin: 0;
  color: #333;
  font-weight: 600;
}
.person-card {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.person-card__image {
  display: block;
  width: 100%;
  height: 320px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}
.person-card__image:focus,
.person-card__image:focus-visible,
.person-card__image:active {
  outline: none;
  border: 0;
  box-shadow: none;
}
.person-card__image img {
  display: block;
  width: 100%;
  height: 320px;
  margin: 0;
  object-fit: cover;
  border: 0;
  outline: 0;
  transition: transform 0.3s ease;
}
.person-card__image:hover img {
  transform: scale(1.03);
}
.person-card__content {
  padding: 24px;
}
.person-card h3 {
  min-height: 32px;
  margin: 0 0 6px;
  color: #333;
  font-size: 1.35rem;
  font-weight: 600;
}
.person-card__title {
  min-height: 23px;
  margin: 0 0 10px;
  color: #777;
  font-size: 0.95rem;
}
.person-card__email {
  display: block;
  margin-bottom: 16px;
  color: #BD9435;
  font-size: 0.92rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.person-card__email:hover {
  color: #B96338;
  text-decoration: underline;
}
.person-card__bio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #BD9435;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.person-card__bio-link:focus,
.person-card__bio-link:focus-visible,
.person-card__bio-link:active {
  outline: none;
  border: 0;
  box-shadow: none;
}
.person-card__bio-link i {
  transition: transform 0.2s ease;
}
.person-card__bio-link:hover {
  color: #B96338;
}
.person-card__bio-link:hover i {
  transform: translateX(3px);
}
.person-bio-modal .modal-dialog {
  max-width: 900px;
}
.person-bio-modal .modal-content {
  position: relative;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}
.person-bio-modal .modal-body {
  display: flex;
  gap: 35px;
  padding: 40px;
}
.person-bio-modal__image {
  flex: 0 0 280px;
}
.person-bio-modal__image img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  border: 0;
  outline: 0;
}
.person-bio-modal__content {
  flex: 1;
}
.person-bio-modal__content h2 {
  margin: 0 0 5px;
  color: #333;
  font-weight: 600;
}
.person-bio-modal__content p {
  line-height: 1.6;
}
.person-bio-modal__title {
  margin: 0 0 20px;
  color: #BD9435;
  font-weight: 500;
}
.person-bio-modal__email {
  display: inline-block;
  margin-top: 15px;
  color: #BD9435;
  font-weight: 500;
  text-decoration: none;
}
.person-bio-modal__email:hover {
  color: #B96338;
  text-decoration: underline;
}
.person-bio-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: #333;
  cursor: pointer;
}
.person-bio-modal__close:focus,
.person-bio-modal__close:focus-visible {
  outline: none;
  box-shadow: none;
}
.person-bio-modal__close:hover {
  background: rgba(0,0,0,0.12);
}
@media (max-width: 767px) {
  .person-card__image {
    height: 280px;
  }
  .person-card__image img {
    height: 280px;
  }
  .person-bio-modal .modal-body {
    display: block;
    padding: 30px 25px;
  }
  .person-bio-modal__image {
    margin-bottom: 25px;
  }
  .person-bio-modal__image img {
    height: 300px;
  }
}
.cta-button,
.gform-theme--framework.gform_wrapper input[type="submit"].gform_button.button,
.gform-theme--framework .gform_button_select_files.gform-theme-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 1rem;
  padding: 13px 22px;
  background-color: #D47C4B !important;
  color: #fff !important;
  border: 2px solid #D47C4B !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover,
.cta-button:focus,
.gform-theme--framework.gform_wrapper input[type="submit"].gform_button.button:hover,
.gform-theme--framework.gform_wrapper input[type="submit"].gform_button.button:focus,
.gform-theme--framework .gform_button_select_files.gform-theme-button:hover,
.gform-theme--framework .gform_button_select_files.gform-theme-button:focus {
  background-color: #c7662f !important;
  border-color: #c7662f !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15) !important;
}
.cta-button:active,
.gform-theme--framework.gform_wrapper input[type="submit"].gform_button.button:active,
.gform-theme--framework .gform_button_select_files.gform-theme-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
}
.gform-theme--framework {
  --gf-ctrl-file-zone-icon-color: #D47C4B;
}
.gform-theme--framework
.gfield:where(
    .gfield--type-fileupload,
.gfield--input-type-fileupload
)
.gform_drop_area::before {
  color: #D47C4B !important;
}
.gform-theme--framework
.gform_button_select_files.gform-theme-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  margin-top: 1rem !important;
  padding: 13px 22px !important;
  background-color: #D47C4B !important;
  color: #fff !important;
  border: 2px solid #D47C4B !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}
.gform-theme--framework
.gform_button_select_files.gform-theme-button:hover,
.gform-theme--framework
.gform_button_select_files.gform-theme-button:focus {
  background-color: #c7662f !important;
  border-color: #c7662f !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(0,0,0,0.15) !important;
}
.gform-theme--framework
.gform_button_select_files.gform-theme-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
}
.last-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-size: 18px;
  color: #666;
  font-weight: 400;
}
.last-updated i {
  font-size: 18px;
  color: #C37C13;
}
