:root {
  --green-900: #0f2f24;
  --green-800: #174535;
  --green-700: #1f6b4f;
  --green-100: #eaf5ef;
  --gold: #d9a441;
  --cream: #fffaf0;
  --text: #1d2521;
  --muted-text: #5f6f68;
  --border: #dfe8e2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 47, 36, 0.12);
  --radius: 18px;
  --max-width: 1160px;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.container {
  padding:0;
  width: min(92%, var(--max-width));
  margin: 0 auto;
  margin-top:-40px;
}

/* HEADER */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0px;
  min-width: 250px;
  margin-left: -100px;
}

.brand-logo {
  height: 150px;
  width: 140px;
  object-fit: contain;
  padding: 0;
}

.brand-text strong,
.brand-text small {
  margin-left: -30px;
  display: block;
}

.brand-text strong {
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted-text);
  font-size: 0.76rem;
  line-height: 1.2;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav > a,
.nav-dropdown > a {
  color: var(--green-900);
  padding: 26px 0;
  display: inline-flex;
  align-items: center;
}

.main-nav a:hover {
  color: var(--green-700);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 6px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 150;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--green-900);
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--green-100);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-900);
  margin: 5px 0;
  border-radius: 4px;
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  height: 50vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}

.slide-stage {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 300ms ease, opacity 900ms ease;
  background-size:cover;
  background-position:center 45%;
  background-repeat: no-repeat;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-fixed-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(15, 47, 36, 0.45),
    rgba(15, 47, 36, 0.18),
    rgba(15, 47, 36, 0.05)
  );
  pointer-events: none;
}

.slide-content {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.32);
}

.slider-btn-left {
  left: 24px;
}

.slider-btn-right {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 9px;
}

.dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.dot.is-active {
  background: var(--gold);
}

/* COMMON BUTTONS */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-900);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--border);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  
}

/* WHO WE ARE */
.who-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.who-content h1{
  margin-top:-50px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.who-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  color: var(--green-900);
  margin: 0 0 22px;
  max-width: 780px;
}

.who-content p {
  color: var(--muted-text);
  font-size: 1.02rem;
}

.who-lead {
  font-size: 1.16rem !important;
  color: var(--text) !important;
  border-left: 5px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 20px;
}

.who-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.who-panel {
  background: var(--green-900);
  color: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.who-panel::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.18);
}

.who-panel::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.who-panel-header {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.who-panel-header span {
  display: inline-flex;
  background: rgba(217, 164, 65, 0.18);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.who-panel-header h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.18;
  margin: 16px 0 0;
  color: var(--white);
}

.who-mini-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.who-mini-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.who-mini-card strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.who-mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

/* GENERAL SECTIONS */
.section {
  padding: 78px 0;
}

.section.muted {
  background: var(--green-100);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--green-900);
}

/* WHAT WE DO */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 47, 36, 0.06);
}

.info-card .icon {
  font-size: 2rem;
}

.info-card h3 {
  color: var(--green-900);
  margin: 12px 0 8px;
}

.info-card p {
  color: var(--muted-text);
  margin: 0;
}

/* LATEST NEWS AND PUBLICATIONS */
.row-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: none;
}

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

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 47, 36, 0.06);
}

.news-label {
  color: var(--gold) !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.news-card h3 {
  color: var(--green-900);
  margin: 0 0 10px;
}

.news-card p {
  color: var(--muted-text);
}

.news-card a {
  color: var(--green-700);
  font-weight: 800;
}

/* NEWSLETTER */
.newsletter-section {
  background:#eaf5ef;
  padding: 70px 0;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  color: var(--white);
}

.newsletter-box h2 {
  color: rgb(238, 191, 20);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.18;
  margin: 0 0 14px;
  font-weight: bold;
}

.newsletter-box p {
  color: rgba(20, 18, 18, 0.82);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 999px;
}

.newsletter-form input {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  min-height: 48px;
  color: var(--text);
}

.newsletter-form input:focus {
  outline: 3px solid rgba(217, 164, 65, 0.35);
}


/* FOOTER */
.site-footer {
  background: #3d6c5c;
  color: rgba(255, 255, 255, 0.82);
  padding-top: -14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.footer-logo {
  height:120px;
  width: 175px;
  margin-bottom: 0px;
  color: #040404;
}

.site-footer h4 {
  color: var(--white);
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0 0 6px;
  
  font-size: 0.9rem;
  line-height: 1.45;
}

.logo-text p {
  margin-top: -29px;
}



.site-footer a {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.follow-heading {
  margin-top: 10px !important;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.social-links a {
  display: inline-flex;
  margin: 0;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
}

.footer-bottom {
  margin-top: 14px;
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

/* REVIEW PLACEHOLDER PAGES */
.empty-page {
  min-height: 56vh;
  background: var(--green-50);
}

.main-nav > a.inactive-link:hover {
  color: var(--green-900);
}

.nav-dropdown > button,
.nav-parent,
.nav-button {
  background: transparent;
  border: none;
  padding: 26px 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  color: var(--green-900);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > button::after,
.nav-parent::after,
.nav-button::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 6px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 0 !important;
    padding: 5px !important;
    justify-content: flex-start;
    width: 165px !important;
    max-width: calc(100vw - 20px);
  }

  .nav-dropdown {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-nav > a,
  .nav-dropdown > a,
  .nav-dropdown > button,
  .nav-parent,
  .nav-button {
    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 8px 9px !important;


    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 2.5;

    border: 0;
    border-bottom: 1px solid rgba(15, 47, 36, 0.08);
    background: transparent;
  }
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: clip !important;
    overflow-y: visible !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: clip !important;
  }

  .site-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #ffffff;
  }
}

/* =====================================================
   RESPONSIVE: TABLETS AND MOBILE DEVICES
   Replace the existing media-query section with this
===================================================== */

@media (max-width: 1024px) {

  /* Prevent horizontal overflow and zoom-out shrinking */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 28px);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* ================= HEADER ================= */

  .site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner {
    position: relative;
    width: calc(100% - 24px);
    min-height: 72px;
    max-height: none;
    margin: 0 auto;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 7px;

    min-width: 0;
    max-width: calc(100% - 54px);
    margin: 0;
  }

  .brand-logo {
    width: auto;
    height: 62px;
    max-width: 78px;
    padding: 0;

    flex-shrink: 0;
    object-fit: contain;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong,
  .brand-text small {
    display: block;
    margin: 0;
  }

  .brand-text strong {
    color: var(--green-900);
    font-size: 0.92rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .brand-text small {
    margin-top: 2px;
    font-size: 0.65rem;
    line-height: 1.2;
  }

  /* Hamburger */
  .menu-toggle {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    padding: 7px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    margin: 4px 0;
  }

  /* Compact popup menu */
  .main-nav {
    position: fixed !important;
    top: 68px !important;
    width: 210px !important;
    max-width: calc(100vw - 18px) !important;

    right: 0 !important;
    left: auto !important;

    
    max-height: calc(100vh - 90px);
    overflow-y: auto;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    margin: 0 !important; 
    padding: 0 !important;

    background:rgb(246, 246, 246);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(15, 47, 36, 0.2);
  }

  .main-nav.is-open {
    display: flex;
  }

  /* Main menu items */
  .main-nav > a,
  .nav-dropdown > a,
  .nav-parent,
  .nav-button {
    width: 100%;
    min-height: 34px;

    margin: 0;
    padding: 6px 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--green-900);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(15, 47, 36, 0.08);
    border-radius: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 2;
    text-align: left;
  }

  .main-nav > a:hover,
  .nav-dropdown > a:hover,
  .nav-parent:hover,
  .nav-button:hover {
    color: var(--green-900);
    background: transparent;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
  }

  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  /* Submenus remain hidden initially */
  .dropdown-menu {
  position: static;
  display: none;

  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 2px 0 3px 10px;

  background: #f3f7f4;
  border: 0;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: none;
  }

  /* Disable desktop hover opening */
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Open selected submenu */
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

 .dropdown-menu a {
  display: block;
  width: 100%;
  padding: 6px 8px;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--green-900);
  background: transparent;
  }

  .dropdown-menu a:hover {
    color: var(--green-700);
    background: transparent;
  }

  .inactive-link {
    opacity: 1;
    cursor: pointer !important;
  }

  /* ================= HERO ================= */

  .hero-slider {
    height: 360px;
    min-height: 0;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }

  .slider-btn-left {
    left: 10px;
  }

  .slider-btn-right {
    right: 10px;
  }

  .slider-dots {
    bottom: 6px;
    gap: 5px;
  }

  .dot {
    width: 3px;
    height: 15px;
  }

  /* ================= WHO WE ARE ================= */

  .who-section {
    padding: 46px 0;
  }

  .who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .who-content h1 {
    margin-top: 0;
  }

  .who-content h2 {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 1.14;
  }

  .who-content p {
    font-size: 0.94rem;
  }

  .who-lead {
    padding-left: 13px;
    font-size: 1rem !important;
  }

  /* Hide mobile action buttons */
  .who-actions {
    display: none;
  }

  .who-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .who-panel-header {
    margin-bottom: 14px;
  }

  .who-panel-header span {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  /* Core-direction cards: 2 × 2 */
  .who-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .who-mini-card {
    min-width: 0;
    padding: 12px;
    border-radius: 12px;
  }

  .who-mini-card strong {
    margin-bottom: 5px;
    font-size: 0.88rem;
  }

  .who-mini-card p {
    font-size: 0.77rem;
    line-height: 1.4;
  }

  /* ================= WHAT WE DO ================= */

  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  /* Program cards: 2 × 2 */
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .info-card {
    min-width: 0;
    padding: 15px;
    border-radius: 14px;
  }

  .info-card .icon {
    font-size: 1.55rem;
  }

  .info-card h3 {
    margin: 8px 0 6px;
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .info-card p {
    font-size: 0.79rem;
    line-height: 1.45;
  }

  /* ================= LATEST NEWS ================= */

  .row-heading {
    display: block;
  }

  .news-grid {
    display: flex;
    gap: 14px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;

    padding: 2px 14px 16px 0;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .news-grid {
    scrollbar-width: none;
  }

  .news-card {
    flex: 0 0 86%;
    min-width: 0;

    padding: 20px;
    border-radius: 16px;

    scroll-snap-align: start;
  }

  .news-card h3 {
    font-size: 1.06rem;
    line-height: 1.35;
  }

  .news-card p {
    font-size: 0.88rem;
  }

  /* ================= NEWSLETTER ================= */

  .newsletter-section {
    padding: 42px 0;
  }

  .newsletter-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .newsletter-box .eyebrow {
    margin-bottom: 5px;
    white-space: nowrap;
  }

  .newsletter-box h2 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    line-height: 1.18;
  }

  .newsletter-box p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 7px;

    width: 100%;
    padding: 6px;

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
  }

  .newsletter-form input {
    min-width: 0;
    min-height: 43px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .newsletter-form .btn {
    width: auto;
    min-height: 43px;
    padding: 9px 14px;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  /* ================= FOOTER ================= */

  .site-footer {
    padding-top: 18px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Logo and introductory text span full width */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 10px;
  }

  .footer-logo {
    width: 90px;
    height: auto;
    margin: 0;
  }

  .footer-grid > div:first-child p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .site-footer h4 {
    margin-bottom: 5px;
    font-size: 0.86rem;
  }

  .site-footer p,
  .site-footer a {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .site-footer a {
    margin-bottom: 3px;
  }

  .follow-heading {
    margin-top: 8px !important;
  }

  .social-links {
    gap: 4px;
  }

  .social-links a {
    padding: 3px 7px;
    font-size: 0.7rem;
  }

  .footer-bottom {
    margin-top: 14px;
    padding: 7px 10px;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 620px) {

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    height: 55px;
    max-width: 68px;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text small {
    display: none;
  }


  .slider-dots {
    bottom: 6px;
    gap: 5px;
  }

  .dot {
    width: 3px;
    height: 10px;
  }

  .main-nav {
    width: 220px;
    max-width: calc(100vw - 18px);
  }

  .hero-slider {
    height: 320px;
  }

  .who-content h2 {
    font-size: 1.75rem;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .newsletter-box h2 {
    font-size: 1.45rem;
  }
}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 370px) {

  .container {
    width: calc(100% - 20px);
  }

  .brand-logo {
    height: 50px;
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .hero-slider {
    height: 290px;
  }

  .who-mini-grid,
  .card-grid.four {
    gap: 8px;
  }

  .who-mini-card,
  .info-card {
    padding: 11px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}