@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-500-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-500-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-600-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-600-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/lora:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/ubuntu@latest/latin-500-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/ubuntu@latest/latin-500-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 100 700;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/ibm-plex-sans:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100vw;
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background: #003366;
  position: relative;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* Override background for tablet and mobile */
@media (max-width: 1100px) {
  body {
    background: #2055a8 !important;
  }
}
@media (max-width: 700px) {
  body {
    background: #2055a8 !important;
  }
}

/* Header Styles */
.settings-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem 1rem 2.5rem;
  background: #FAFAFA;
  color: #fff;
  font-family: Arial, sans-serif;
  border-bottom: 0.3125rem solid #ffeb3b;
  position: relative;
  z-index: 10;
}

.header-title {
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header-home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-home-link:focus,
.header-home-link:hover {
  outline: none;
  opacity: 0.85;
}

.header-image {
  height: 3.125rem;
  width: auto;
  display: block;
  border-radius: 0.5rem;
  background: #FAFAFA;
  margin-right: 1rem;
}

.header-text {
  color: #024083;
  font-family: "Alan Sans", sans-serif;
  font-weight: 900;
  transition: color 0.7s cubic-bezier(.4,0,.2,1);
}

.header-home-link:hover .header-text,
.header-home-link:focus .header-text {
  color: #005ec2;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.header-link {
  color: #333;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 700;
  transition: color 0.2s;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.header-link:hover,
.header-link:focus {
  color: #024083;
  background: transparent;
  outline: 2px solid #024083;
  outline-offset: 2px;
  transition: color 0.2s;
}

.header-link.acknowledgement {
  display: inline-block;
}

/* Mission Section */
.mission-bg-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 25rem;
  margin-bottom: 2em;
  width: 100%;
}

.mission-bg-box {
  background: #18305e;
  border-radius: 1.5rem;
  padding: 2.5em 2em;
  margin: 2.5em auto 0 auto;
  max-width: 56.25rem;
  width: 90vw;
  box-shadow: 0 0.5rem 2rem #0003, 0 0.125rem 0.75rem #18305e55;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-main-title {
  font-size: clamp(4rem, 7vw, 5.5rem);
  text-align: center;
  color: #2765c9;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  text-shadow: 1px 1px 0 #ffe600;
  margin-bottom: 1rem;
}

.mission-text {
  color: #fff;
  font-size: clamp(1.1rem, 2.15vw, 2.5rem);
  text-align: center;
  margin: 1.2em 0 0 0;
  max-width: 50rem;
  font-family: 'Raleway', Arial, sans-serif;
  text-shadow: 0 0.125rem 0.5rem #0005;
}

.mission-bg-box .mission-text:first-child {
  margin-top: 0;
}

/* Mission & Vision Boxes */
.mv-box {
  background: #224080;
  border-radius: 1.2rem;
  box-shadow: 0 0.25rem 1rem #0003;
  padding: 1.5em 1.2em;
  margin: 1em 0;
  width: 100%;
  max-width: 40rem;
  max-height: 13rem;
  overflow-y: auto;
  color: #fff;
  text-align: center;
  font-family: 'Raleway', Arial, sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.vision-text {
  white-space: pre-line;
  font-size: 1.1rem;
  padding-left: 1em;
  padding-right: 1em;
}

.mv-title {
  font-size: 2rem;
  color: #ffe600;
  margin-bottom: 0.5em;
  font-family: "Alan Sans", sans-serif;
  text-shadow: 1px 1px 0 #2055a8;
}

.mv-text {
  font-size: 1.25rem;
  margin-left: 1em;
  margin-right: 1em;
  margin: 0;
  color: #fff;
  text-shadow: 0 0.125rem 0.5rem #0005;
}

/* Mission Images */
.see-pictures-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
}

.see-pictures-text {
  display: none;
  width: 100%;
  text-align: center;
  color: #ffe600;
  font-family: "Comic Relief", system-ui;
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-top: 0.75rem;
}

.down-arrow {
  font-size: 1.5em;
  vertical-align: middle;
}

.mission-pictures {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.mission-pictures-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.mission-pictures-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  height: 24rem;
}

.mission-pictures-side.left {
  margin-left: 5rem;
  margin-bottom: 12.5rem;
}

.mission-pictures-side.right {
  margin-right: 5rem;
  margin-bottom: 12.5rem;
}

.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

.mission-bg-img {
  width: clamp(12rem, 28vw, 20rem);
  height: clamp(8rem, 16vw, 12rem);
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem #0002;
  opacity: 0.92;
  pointer-events: none;
  transition: width 0.2s, height 0.2s;
}

/* Activities Section */
.big-center-title {
  text-align: center;
  font-size: clamp(2rem, 3.5em, 4vw);
  color: #2f7bf5;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 800;
  text-shadow: 1px 1px 0 #ffe600;
}

.activities-intro-text {
  display: inline-block;
  margin-top: 2em;
  padding: 1em 2em;
  background: rgba(255,255,255,0.92);
  border: 2px solid #2055a8;
  border-radius: 1em;
  box-shadow: 0 0.25em 1em #2055a822;
  text-align: center;
  color: #2055a8;
  font-size: 4em;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 40em;
  margin-left: 7em;
  margin-right: 7em;
}

.activity-boxes-container {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.activity-box {
  background: #18305e;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 2rem #0003, 0 0.125rem 0.75rem #18305e55;
  width: clamp(12rem, 25vw, 25rem);
  height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  outline: none;
  position: relative;
}

.activity-box:focus,
.activity-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 2.5rem #0005, 0 0.25rem 1rem #18305e88;
}

.activity-label {
  font-size: 2em;
  color: #ffe600;
  font-family: "Alan Sans", sans-serif;
  text-shadow: 1px 1px 0 #2055a8;
  z-index: 3;
  position: relative;
}

/* Activities Media Section */
.media-box {
  margin: 2em auto 0 auto;
  background: #18305e;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 2rem #0003, 0 0.125rem 0.75rem #18305e55;
  max-width: 115.625rem;
  min-height: 37rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2em 0;
}
.media-content-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto 1em auto;
}
.media-box .center-video {
  position: relative;
  width: 12rem;
  height: 22rem;
  margin-bottom: 1em;
  flex: 0 0 auto;
}
.media-side-text {
  flex: 1 1 0;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.5rem;
  background: transparent;
  padding: 0.5em 0 0.5em 0.5em;
  min-width: 12rem;
  max-width: 20rem;
}
.media-side-text h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.75rem;
  color: #ffe600;
  font-family: "Alan Sans", sans-serif;
  text-shadow: 1px 1px 0 #2055a8;
}
.media-box .surround-pic {
  position: absolute;
  width: 17.5rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.5rem #0004;
  z-index: 1;
}
.media-box .surround-pic.pic1 { position: absolute; top: 1.25rem; left: 2.5rem;}
.media-box .surround-pic.pic2 { position: absolute; top: 1.25rem; right: 2.5rem;}
.media-box .surround-pic.pic3 { position: absolute; bottom: 1.25rem; left: 2.5rem;}
.media-box .surround-pic.pic4 { position: absolute; bottom: 1.25rem; right: 2.5rem;}
.media-box .surround-pic.pic5 { position: absolute; top: 50%; left: 2.5rem; transform: translateY(-50%);}
.media-box .surround-pic.pic6 { position: absolute; top: 50%; right: 2.5rem; transform: translateY(-50%);}

/* Acknowlegement Section */
.ack-box {
  background: linear-gradient(135deg, #e3f0ff 0%, #ffe600 100%);
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 2rem #0002;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  max-width: 110rem;
  min-height: 40rem;
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ack-inner-row {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
  padding-left: 2rem;
}

.ack-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
  background: #f7faff;
  border: 2px solid #2055a8;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1rem #2055a822;
  padding: 1.5rem 1rem 1rem 1rem;
  margin: 0.5rem 0;
}

.ack-img {
  width: 100%;
  height: auto;
  max-height: 34rem;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 0.25rem 1rem #0002;
  margin-bottom: 1rem;
  display: block;
}

.ack-texts {
  text-align: center;
}

.ack-name {
  font-size: 1.5rem;
  font-family: "Lora";
  font-weight: bold;
  color: #2055a8;
  margin-bottom: 0.2rem;
}

.ack-role {
  font-size: 1.15rem;
  font-family: "Ubuntu";
  background: linear-gradient(0deg, #43a047 10%, #ffe600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 4px #2055a822;
  letter-spacing: 0.03em;
  margin-top: 0.2rem;
}

.ack-section-title {
  position: absolute;
  right: 17rem;
  top: 30%;
  transform: translateY(-100%);
  border: 2px solid #2055a8;
  font-size: 2.5rem;
  font-family: "Poppins";
  font-weight: 600;
  color: #2055a8;
  letter-spacing: 0.03em;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}

.ack-bottom-text {
  position: absolute;
  top: 55%;
  right: 4rem;
  transform: translateY(-50%);
  border: 2px solid #2055a8;
  font-size: 1.7rem;
  color: #2055a8;
  text-align: center;
  font-family: "Poppins";
  font-weight: 500;
  max-width: 50%;
  min-width: 12rem;
  word-break: break-word;
  white-space: normal;
  box-sizing: border-box;
}

.ack-section-title,
.ack-bottom-text {
  background: rgba(255,255,255,0.85);
  border-radius: 2rem;
  padding: 1rem 2rem;
  box-shadow: 0 0.25rem 1rem #2055a822;
  display: inline-block;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

/* Nutrition Month Theme */
.media-box.nutrition-theme .media-side-text {
  flex: 1 1 0;
  color: #fff;
  background: transparent;
  padding: 0.5em 0 0.5em 0.5em;
  min-width: 40rem;
  max-width: 45rem;
}

.media-box.nutrition-theme .media-side-text p {
  flex: 1 1 0;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  background: transparent;
  padding: 0.5em 0 0.5em 0.5em;
  text-align: center;
}

.media-box.nutrition-theme .media-side-text h2 {
  margin-top: 0;
  margin-bottom: 0.25em;
  font-size: 5rem;
  text-align: center;
  color: #ffe600;
  font-family: "Alan Sans", sans-serif;
  text-shadow: 1px 1px 0 #2055a8;
}

.activity-box.nutrition-theme {
  background: linear-gradient(140deg, #43a047 60%, #ffe600 100%);
  box-shadow: 0 0.75rem 2.5rem #43a04788, 0 0.25rem 1rem #ffe60055;
  border: 2px solid #ffe600;
  transform: scale(1.05);
}

.activity-box.nutrition-theme .activity-label {
  color: #fff;
  text-shadow: 1px 1px 0 #388e3c, 0 0 8px #ffe600;
}

.media-box.nutrition-theme {
  background: linear-gradient(140deg, #43a047 70%, #ffe600 100%);
  box-shadow: 0 0.75rem 2.5rem #43a04788, 0 0.25rem 1rem #ffe60055;
  border: 2px solid #ffe600;
}

/* Filipino Buwan ng Wika Theme */
.activity-box.buwan-theme {
  background: linear-gradient(140deg, #2055a8 30%, #d32f2f 90%);
  box-shadow: 0 0.75rem 2.5rem #2055a888, 0 0.25rem 1rem #ffe60055;
  border: 2px solid #ffe600;
}

.activity-box.buwan-theme .activity-label {
  color: #fff;
  text-shadow: 1px 1px 0 #d32f2f, 0 0 8px #ffe600;
}

.media-box.buwan-theme {
  background: linear-gradient(110deg, #2055a8 30%, #d32f2f 90%);
  box-shadow: 0 0.75rem 2.5rem #2055a888, 0 0.25rem 1rem #ffe60055;
  border: 2px solid #ffe600;
}

@media (min-width: 1101px) and (max-width: 1440px) {
  .settings-header {
    padding: 1.25rem 2rem 1rem 2rem;
  }
  .header-nav {
    gap: 1.5rem;
  }
  .mission-bg-box {
    max-width: 52rem;
    padding: 2.25em 1.75em;
  }
  .mission-pictures-row {
    gap: 1.5rem;
  }
  .mission-pictures-side {
    height: 22rem;
  }
  .mission-bg-img {
    width: clamp(11rem, 26vw, 18rem);
    height: clamp(7rem, 15vw, 11rem);
  }
  .activity-label {
    font-size: 1.8em;
  }
  .media-box {
    max-width: 100rem;
    min-height: 34rem;
    padding: 1.75em 0;
  }
  .media-content-row {
    max-width: 42rem;
    gap: 1.5rem;
  }
  .media-box .center-video {
    width: 11rem;
    height: 20rem;
  }
  .media-box .surround-pic {
    width: 16rem;
    height: 9rem;
  }
  .ack-box {
    max-width: 100rem;
    min-height: 38rem;
    padding: 1.75rem 2rem 1.25rem 2rem;
  }
  .ack-section-title {
    right: 9rem;
    top: 28%;
    font-size: 2.2rem;
  }
  .ack-bottom-text {
    right: 3rem;
    font-size: 1.5rem;
    max-width: 42%;
  }
  .activities-intro-text {
    font-size: 2.5em;
  }
}

/* Responsive Design: Tablet and Below */
@media (max-width: 1100px) {
  .settings-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem 1rem 1.5rem;
  }
  .header-title {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    align-items: stretch;
    margin-top: 0.5rem;
  }
  .header-nav-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
    width: 100%;
  }
  .header-link {
    flex: 1 1 0;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.25rem 0.5rem;
  }
  .header-link.acknowledgement {
    margin: 0.5rem auto 0 auto;
    display: block;
    width: fit-content;
    text-align: center;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block;
    width: 100%;
  }
  .see-pictures-text {
    display: block;
  }
  .mv-box {
    padding: 0.7em 0.4em;
    max-width: 90vw;
    max-height: 9rem;
    font-size: 0.98rem;
    margin-left: auto;
    margin-right: auto;
  }
  .mission-bg-box {
    padding: 2em 1em;
    max-width: 95vw;
  }
  .mission-bg-img {
    width: clamp(10rem, 40vw, 16rem);
    height: clamp(6rem, 22vw, 10rem);
  }
  .mission-bg-box-container {
    min-height: 0;
    margin-bottom: 0;
  }
  .mission-pictures-row {
    display: none;
  }
  .mission-pictures.mobile-only {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #2055a8;
  }
  .media-box .center-video {
    width: 10rem;
    height: 17.5rem;
  }
  .media-box .surround-pic {
    width: 12.5rem;
    height: 10rem;
  }
  .media-box.buwan-theme .media-content-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto 1em auto;
  }
  .media-box.buwan-theme .center-video {
    margin: 0 auto 1rem auto;
    display: block;
  }
  .media-box.buwan-theme .media-side-text {
    margin: 0 auto;
    text-align: center;
    max-width: 90vw;
    min-width: unset;
    padding: 0.5em 1em;
    font-size: 1.2rem;
  }
  .media-box.buwan-theme .media-side-text h2 {
    font-size: 1.5rem;
  }
  .media-box.buwan-theme .media-side-text p {
    margin: 0em 10em 0em 10em;
    padding: 1em 1.5em;
  }
  .media-box.nutrition-theme .media-side-text {
  min-width: 12rem;
  max-width: 20rem;
  padding: 0.5em 0 0.5em 0.5em;
  }
  .media-box.nutrition-theme .media-side-text p {
  font-size: 1.25rem;
  margin-right: 0.5em;
  font-weight: 500;
  text-align: center;
  }
  .media-box.nutrition-theme .media-side-text h2 {
  font-size: 2.1rem;
  text-align: center;
  }
  .activity-label {
    font-size: 1.5em;
  }
  .activities-intro-text {
    font-size: 2em;
  }
  .ack-section-title {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    font-size: 2rem;
    padding: 0.7rem 1.5rem;
    margin: 0 0 1.5rem 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    z-index: 1;
  }
  .ack-bottom-text {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    min-width: unset;
    font-size: 1.3rem;
    margin: 2rem 0 0 0;
    padding: 0.7rem 1rem;
    text-align: center;
    box-sizing: border-box;
    display: block;
  }
  .ack-box {
    padding: 1.5rem 1rem 1.5rem 1rem;
    min-height: unset;
    max-width: 98vw;
    margin: 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .ack-inner-row {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding-left: 0;
    align-items: center;
  }
  .ack-person {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.2rem 0.7rem;
  }
  .ack-img {
    max-height: 750px;
    object-fit: cover;
  }
}

/* Responsive Design: Mobile */
@media (max-width: 700px) {
  .settings-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  .header-title {
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    align-items: stretch;
    margin-top: 0.5rem;
  }
  .header-nav-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
    width: 100%;
  }
  .header-link {
    flex: 1 1 0;
    text-align: center;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
  }
  .header-link.acknowledgement {
    margin: 0.5rem auto 0 auto;
    display: block;
    width: fit-content;
    text-align: center;
  }
  .see-pictures-text {
    display: block;
  }
  .mission-bg-box {
    padding: 1.2em 0.5em;
    max-width: 99vw;
  }
  .mission-bg-img {
    width: clamp(8rem, 80vw, 14rem);
    height: clamp(5rem, 36vw, 8rem);
  }
  .mission-main-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }
  .mission-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  .see-pictures-row {
    margin-top: 1rem;
  }
  .mission-bg-img {
    width: clamp(8rem, 60vw, 14rem);
    height: clamp(5rem, 30vw, 8rem);
  }
  .mission-bg-box {
    padding: 0.7em 0.2em;
  }
  .mission-bg-box-container {
    min-height: 0;
    margin-bottom: 0;
  }
  .big-center-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
  .mv-box {
    padding: 0.7em 0.4em;
    max-width: 90vw;
    max-height: 10rem;
    font-size: 0.98rem;
    margin-left: auto;
    margin-right: auto;
  }
  .mv-title {
    font-size: 1.2rem;
  }
  .mv-text,
  .vision-text {
    font-size: 0.98rem;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .activity-boxes-container {
    gap: 1em;
    flex-direction: column;
    align-items: center;
  }
  .activity-box {
    width: 90vw;
    min-width: 0;
  }
  .activities-intro-text {
    display: none !important;
  }
  .media-box.buwan-theme .media-side-text p {
    margin: 0em 0em 0em 0em;
    padding: 1em 1.5em;
  }
  /* --- MEDIA BOX MOBILE FIXES --- */
  .media-box {
    min-height: unset;
    padding: 0.5em 0.2em;
    max-width: 98vw;
    width: 98vw;
    box-sizing: border-box;
    margin: 1em auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .media-content-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto 0.5em auto;
  }
  .media-box .center-video {
    width: 70vw;
    height: 70vw;
    max-width: 350px;
    max-height: 200px;
    margin-bottom: 0.5em;
  }
  .media-side-text {
    font-size: 1rem;
    min-width: unset;
    max-width: 95vw;
    padding: 0.2em 0.5em;
    text-align: center;
  }
  .media-side-text h2 {
    font-size: 1.2rem;
  }
  .media-box.nutrition-theme .media-side-text {
  min-width: 12rem;
  max-width: 20rem;
  padding: 0.5em 0 0.5em 0.5em;
  }
  .media-box.nutrition-theme .media-side-text p {
  font-size: 1.25rem;
  margin-right: 0.5em;
  font-weight: 500;
  text-align: center;
  }
  .media-box.nutrition-theme .media-side-text h2 {
  font-size: 1.75rem;
  text-align: center;
  }
  /* Stack surround-pics in a row below content */
  .media-box .surround-pic {
    width: 28vw;
    height: 18vw;
    min-width: 65px;
    min-height: 42px;
    max-width: 100px;
    max-height: 65px;
    position: static !important;
    display: inline-block;
    margin: 0.2em;
  }
  .media-box .surround-pic.pic5 { position: absolute; bottom: 1.25rem; left: 2.5rem; transform: none;}
  .media-box .surround-pic.pic6 { position: absolute; bottom: 1.25rem; right: 2.5rem; transform: none;}
  .media-surround-pics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 0.5em;
  }
  .ack-bottom-text {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  .ack-box {
    padding: 1rem 0.5rem 1rem 0.5rem;
    min-height: unset;
    max-width: 100vw;
    margin: 1rem 0.2rem;
    border-radius: 1rem;
  }
  .ack-section-title {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    margin: 0 0 1rem 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
  }
  .ack-inner-row {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-left: 0;
    align-items: stretch;
  }
  .ack-person {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 1rem 0.5rem;
  }
  .ack-img {
    max-height: 750px;
  }
  .ack-bottom-text {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    max-width: 100%;
    min-width: unset;
    font-size: 1.1rem;
    margin: 1.2rem 0 0 0;
    padding: 0.5rem 0.5rem;
    text-align: center;
    box-sizing: border-box;
  }
}