h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
}

p {
  line-height: 34px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header nav {
  position: relative;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 14px;
}
@media screen and (min-width: 1400px) {
  .header nav {
    padding: 0;
    width: 1400px;
  }
}
.header .logo {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header .logo img {
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.header .logo .site-name {
  text-decoration: none;
  color: #212529;
}
.header .logo .site-name h1 {
  font-size: 20px;
  font-weight: 600;
}
.header .floating-buttons {
  position: absolute;
  display: flex;
  justify-content: end;
  gap: 8px;
  top: -8px;
  right: 0;
}
@media screen and (max-width: 1400px) {
  .header .floating-buttons {
    right: 10px;
  }
}
.header .button {
  padding: 0.8rem 0.8rem 0 0.8rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all 0.2s ease;
  transform: translateY(-1rem);
}
.header .button.portal {
  background: rgba(56, 91, 79, 0.2);
}
.header .button.portal:hover {
  background: #385b4f;
}
.header .button.verification {
  background: rgba(75, 93, 117, 0.2);
}
.header .button.verification:hover {
  background: #4b5d75;
}
.header .button:hover {
  transform: translateY(-0.8rem);
}
.header .button:hover a {
  color: #F8F9FA;
}
.header .button:hover i {
  animation: wiggle 0.3s ease-in-out;
}
.header .button a {
  display: flex;
  align-items: center;
  color: #495057;
  font-weight: 600;
  text-decoration: none;
  font-size: 11px;
  gap: 4px;
  line-height: normal;
}
.header .button a i {
  font-size: 18px;
}
.header #menu-header-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.header #menu-header-menu .nav-item {
  position: relative;
}
.header #menu-header-menu .nav-item.current_page_item:not(.exclude-contact-us)::before {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #385b4f;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.header #menu-header-menu .nav-item a {
  text-decoration: none;
  color: #212529;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header #menu-header-menu .nav-item a:hover {
  transform: translateY(-4px);
}
.header #menu-header-menu .nav-item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
  min-width: 200px;
  list-style: none;
}
.header #menu-header-menu .nav-item .sub-menu .nav-item a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #212529;
}
.header #menu-header-menu .nav-item .sub-menu .nav-item a:hover {
  background-color: #f0f0f0;
  transform: none;
}
.header #menu-header-menu .nav-item .sub-menu .nav-item {
  position: relative;
}
.header #menu-header-menu .nav-item .sub-menu .nav-item .sub-menu {
  top: 0;
  left: 100%;
  position: absolute;
  display: none;
  z-index: 15;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
}
.header #menu-header-menu .nav-item .sub-menu .nav-item:hover > .sub-menu {
  display: flex;
  flex-direction: column;
}
.header #menu-header-menu .nav-item:hover > .sub-menu {
  display: flex;
}
.header .hamburger {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: #6C757D;
}
@media screen and (max-width: 768px) {
  .header .logo .site-name h1 {
    font-size: 16px;
  }
  .header .menu-header-menu-container,
  .header .floating-buttons {
    display: none;
  }
  .header .hamburger {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu__nav {
  overflow-y: auto;
}
.mobile-menu__nav__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu ul.sub-menu li {
  padding-left: 1rem;
  margin-top: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .close-menu {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-bottom: 16px;
  color: #6C757D;
}
.mobile-menu .mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu .mobile-nav .nav-item a {
  color: #212529;
  font-size: 16px;
  text-decoration: none;
}
.mobile-menu .mob-portal, .mobile-menu .mob-verification {
  border-radius: 6px;
  width: 100%;
  padding: 0.3rem;
  margin-top: 1rem;
}
.mobile-menu .mob-portal a, .mobile-menu .mob-verification a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F8F9FA;
  font-weight: 600;
  text-decoration: none;
  font-size: 12px;
  gap: 4px;
  line-height: normal;
}
.mobile-menu .mob-portal a i, .mobile-menu .mob-verification a i {
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .mobile-menu .mob-portal, .mobile-menu .mob-verification {
    right: 10px;
  }
}
.mobile-menu .mob-portal {
  background: #385b4f;
}
.mobile-menu .mob-verification {
  background: #4b5d75;
}
@media screen and (max-width: 768px) {
  .mobile-menu .nav-item .sub-menu .sub-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.hero {
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#banner_slider {
  height: 75vh;
}
#banner_slider .swiper-slide img {
  object-position: center bottom;
}
@media screen and (min-width: 1600px) {
  #banner_slider .swiper-slide img {
    transform: translateY(-10%);
  }
}

#media_slider {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #media_slider {
    height: 600px;
  }
}
#media_slider .swiper-slide img {
  height: 100%;
  object-position: top;
}

#banner_slider,
#media_slider {
  width: 100%;
  position: relative;
  background-color: #212529;
}
#banner_slider .swiper-wrapper,
#media_slider .swiper-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
#banner_slider .swiper-slide,
#media_slider .swiper-slide {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out, transform 0.4s ease;
  opacity: 0.6;
  transform: scale(0.96);
}
#banner_slider .swiper-slide.swiper-slide-active,
#media_slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
#banner_slider .swiper-slide img,
#media_slider .swiper-slide img {
  width: 100%;
  object-fit: cover;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}
#banner_slider .swiper-button-next,
#banner_slider .swiper-button-prev,
#media_slider .swiper-button-next,
#media_slider .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 1.5rem;
  transition: background 0.3s;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
#banner_slider .swiper-button-next::after, #banner_slider .swiper-button-next::before,
#banner_slider .swiper-button-prev::after,
#banner_slider .swiper-button-prev::before,
#media_slider .swiper-button-next::after,
#media_slider .swiper-button-next::before,
#media_slider .swiper-button-prev::after,
#media_slider .swiper-button-prev::before {
  font-size: 1.4rem;
}
#banner_slider .swiper-button-next:hover,
#banner_slider .swiper-button-prev:hover,
#media_slider .swiper-button-next:hover,
#media_slider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}
#banner_slider .swiper-pagination,
#media_slider .swiper-pagination {
  bottom: 6px;
}
#banner_slider .swiper-pagination .swiper-pagination-bullet,
#media_slider .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
#banner_slider .swiper-pagination .swiper-pagination-bullet-active,
#media_slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffd700;
  opacity: 1;
}

@media (max-width: 768px) {
  #banner_slider {
    height: 30vh;
  }
  #banner_slider .swiper-button-next,
  #banner_slider .swiper-button-prev {
    padding: 1.4rem;
  }
  #banner_slider .swiper-button-next::after, #banner_slider .swiper-button-next::before,
  #banner_slider .swiper-button-prev::after,
  #banner_slider .swiper-button-prev::before {
    font-size: 0.8rem;
  }
}
.about-gep {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .about-gep {
    height: auto;
  }
  .about-gep .about-gep-image {
    display: none;
  }
}
.about-gep .about-gep-content {
  display: flex;
  padding: 0 1rem;
}
.about-gep .about-gep-content .about-gep-image,
.about-gep .about-gep-content .about-gep-text {
  flex: 1;
  position: relative;
}
.about-gep .about-gep-text .about-gep-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.about-gep .about-gep-text .about-gep-header h3 {
  font-size: 32px;
}
.about-gep .about-gep-text .about-gep-description p {
  margin-bottom: 8px;
}
.about-gep .about-gep-text .more-button {
  margin-top: 30px;
}
.about-gep .about-gep-text .more-button a {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 12px 24px;
  background: #385b4f;
  font-size: 16px;
  text-decoration: none;
}
.about-gep .about-gep-text .more-button a:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .about-gep .about-gep-text .more-button a {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.about-gep .about-gep-image {
  position: relative;
}
.about-gep .about-gep-image .image-container {
  width: 400px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.2s ease-in;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about-gep .about-gep-image .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  padding: 8px;
  background: linear-gradient(135deg, #e4f4ec, #b8dcd1, #385b4f);
  filter: grayscale(100%);
  transition: all 0.2s ease-in;
}
.about-gep .about-gep-image .image-container:hover {
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.about-gep .about-gep-image .image-container:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.about-gep .about-gep-image .image-container:nth-child(1) {
  transform: translate(calc(-50% - 55px), calc(-50% - 55px));
  z-index: 1;
}
.about-gep .about-gep-image .image-container:nth-child(2) {
  transform: translate(-50%, calc(-50% + 85px));
  z-index: 2;
}
.about-gep .about-gep-image .image-container:nth-child(3) {
  transform: translate(calc(-50% + 85px), -50%);
  z-index: 3;
}
.about-gep .about-gep-image .image-container:nth-child(3) img {
  filter: grayscale(0%);
}
.about-gep .about-gep-image:hover .image-container img {
  filter: grayscale(100%);
}
.about-gep .about-gep-image .image-container:hover {
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.about-gep .about-gep-image .image-container:hover img {
  filter: grayscale(0%) !important;
  transform: scale(1.06);
}

.sponsors-marquee {
  padding: 2.3rem 1rem;
  background: #f8f9fa;
  overflow-x: hidden;
}
.sponsors-marquee .marquee {
  overflow: hidden;
  position: relative;
}
.sponsors-marquee .marquee::before, .sponsors-marquee .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sponsors-marquee .marquee::before, .sponsors-marquee .marquee::after {
    width: 4rem;
  }
}
.sponsors-marquee .marquee::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}
.sponsors-marquee .marquee::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}
.sponsors-marquee .marquee .marquee-track {
  display: flex;
  justify-content: space-around;
  width: 200%;
  animation: scroll 30s linear infinite;
  gap: 6rem;
}
@media (max-width: 768px) {
  .sponsors-marquee .marquee .marquee-track {
    gap: 4rem;
  }
}
.sponsors-marquee .marquee .marquee-track:hover {
  animation-play-state: paused;
}
.sponsors-marquee .marquee .sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}
.sponsors-marquee .marquee .sponsor img {
  max-height: 80px;
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}
.sponsors-marquee .marquee .sponsor img:hover {
  filter: grayscale(0%);
  opacity: 1;
  scale: 1.05;
}
.sponsors-marquee .sponsors-header {
  text-align: center;
  margin-bottom: 62px;
}
.sponsors-marquee .sponsors-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 12px;
}
.sponsors-marquee .sponsors-header p {
  font-size: 1rem;
  color: #6C757D;
  margin-bottom: 16px;
}
.sponsors-marquee .sponsors-header .sponsor-button {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 10px 18px;
  background: #385b4f;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}
.sponsors-marquee .sponsors-header .sponsor-button:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .sponsors-marquee .sponsors-header .sponsor-button {
    padding: 12px 16px;
    font-size: 16px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.survey-request {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #e4f4ec, #b8dcd1, #385b4f);
}
.survey-request .container {
  max-width: 1400px;
  margin: 0 auto;
}
.survey-request .survey-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .survey-request .survey-content {
    flex-direction: column;
  }
}
.survey-request .survey-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.survey-request .survey-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}
.survey-request .survey-text {
  flex: 1;
}
.survey-request .survey-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #212529;
}
.survey-request .survey-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #212529;
}
.survey-request .survey-text .btn {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 12px 24px;
  background: #385b4f;
  font-size: 16px;
  text-decoration: none;
}
.survey-request .survey-text .btn:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .survey-request .survey-text .btn {
    padding: 12px 16px;
    font-size: 16px;
  }
}

.news-section {
  padding: 3rem 1rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
.news-section h2 {
  color: #4b5d75;
}
.news-section .news-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(4, 1fr);
}
.news-section .news-content__left {
  grid-column: 1/4;
}
.news-section .news-content__left__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.news-section .news-content__left__top a {
  text-decoration: none;
  color: #385b4f;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.news-section .news-content__left__top a:hover {
  text-decoration: underline;
}
.news-section .news-content__left .news-cards {
  flex: 1 1 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news-section .news-content__left .news-cards {
    flex: unset;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-section .news-content__left .about-us {
  padding: 2rem 0;
  margin-top: 2.5rem;
}
.news-section .news-content__left .about-us h2 {
  margin-bottom: 1rem;
}
.news-section .news-content__left .about-us p {
  margin-bottom: 1rem;
}
.news-section .news-content__left .about-us .more-btn {
  margin-top: 2rem;
}
.news-section .news-content__left .about-us a {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 10px 18px;
  background: #385b4f;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
.news-section .news-content__left .about-us a:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .news-section .news-content__left .about-us a {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.news-section .news-content__right .news-content__right__president-corner {
  background-color: #F8F9FA;
  padding: 1.4rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.news-section .news-content__right .news-content__right__president-corner:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.news-section .news-content__right .news-content__right__president-corner h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #4b5d75;
  font-weight: 600;
}
.news-section .news-content__right .news-content__right__president-corner .president-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-section .news-content__right .news-content__right__president-corner .president-box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 1000px;
  margin-bottom: 1rem;
  background: #eaeaea;
}
.news-section .news-content__right .news-content__right__president-corner .president-box .president-name p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #212529;
}
.news-section .news-content__right .news-content__right__president-corner .president-box .message-preview p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #495057;
  line-height: 1.4;
}
.news-section .news-content__right .news-content__right__president-corner .president-box .message-preview a {
  font-size: 0.9rem;
  color: #385b4f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.news-section .news-content__right .news-content__right__president-corner .president-box .message-preview a i {
  margin-left: 0.25rem;
}
.news-section .news-content__right .news-content__right__president-corner .president-box .message-preview a:hover {
  text-decoration: underline;
}
.news-section .news-content__right__quick-links {
  padding: 1rem 2rem;
  background: #F8F9FA;
  border-radius: 8px;
}
.news-section .news-content__right__quick-links h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.news-section .news-content__right__quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-section .news-content__right__quick-links ul a {
  text-decoration: none;
  color: #fff;
}
.news-section .news-content__right__quick-links ul a li {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 8px 18px;
  background: #385b4f;
  font-size: 12px;
  margin-bottom: 1rem;
  text-align: center;
}
.news-section .news-content__right__quick-links ul a li:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .news-section .news-content__right__quick-links ul a li {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.news-section .news-content__right__facebook-feed {
  margin-top: 1.5rem;
  background: #F8F9FA;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .news-section .news-content {
    grid-template-columns: repeat(1, 1fr);
    display: flex;
    flex-direction: column-reverse;
  }
  .news-section .news-content__left {
    grid-column: unset;
  }
  .news-section .news-content__right__facebook-feed {
    display: none;
  }
}

.downloads-section {
  padding: 3rem 1rem;
  background: #F8F9FA;
  overflow-x: hidden;
}
.downloads-section h2 {
  color: #4b5d75;
}
.downloads-section h3 {
  color: #385b4f;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.downloads-section .downloads-content__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.downloads-section .downloads-content__top a {
  text-decoration: none;
  color: #385b4f;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.downloads-section .downloads-content__top a:hover {
  text-decoration: underline;
}
.downloads-section .downloads-content__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.downloads-section .downloads-content__item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
}
.downloads-section .downloads-content__item h3 {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 0.5rem;
}
.downloads-section .downloads-content__item ul {
  list-style: none;
  padding: 0;
}
.downloads-section .downloads-content__item ul li {
  margin-bottom: 0.75rem;
}
.downloads-section .downloads-content__item ul li a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  max-width: 100%; /* Adjust width as needed */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.downloads-section .downloads-content__item ul li a i {
  font-size: 1.5rem;
}
.downloads-section .downloads-content__item ul li a:hover {
  color: #385b4f;
  text-decoration: underline;
}

.join-gep {
  padding: 2rem 1rem;
  overflow-x: hidden;
}
.join-gep__container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}
.join-gep__content {
  flex: 1 1 50%;
}
.join-gep__content h2 {
  color: #4b5d75;
  margin-bottom: 1rem;
}
.join-gep__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}
.join-gep__content__btn,
.join-gep__content .join-gep__btn {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 10px 18px;
  background: #385b4f;
  font-size: 14px;
  text-decoration: none;
}
.join-gep__content__btn:hover,
.join-gep__content .join-gep__btn:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .join-gep__content__btn,
  .join-gep__content .join-gep__btn {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.join-gep__image {
  flex: 1 1 40%;
  text-align: center;
}
.join-gep__image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-us {
  padding: 6rem 1rem;
  overflow-x: hidden;
}
.contact-us__container {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .contact-us__container {
    flex-direction: column;
  }
}
.contact-us__content {
  flex: 0 0 calc(40% - 1.5rem);
}
.contact-us__content h2 {
  color: #4b5d75;
  margin-bottom: 1rem;
}
.contact-us__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}
.contact-us__content .g-recaptcha {
  margin-bottom: 1.5rem;
  transform-origin: 0 0;
  width: fit-content;
}
@media screen and (max-width: 360px) {
  .contact-us__content .g-recaptcha {
    transform: scale(0.8);
  }
}
.contact-us__map {
  flex: 0 0 calc(60% - 1.5rem);
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}
.contact-us__map img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}
.contact-us .submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 1000px) {
  .contact-us__content, .contact-us__map {
    flex: unset;
    width: 100%;
  }
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 1rem;
  color: #212529;
}
.form-group input {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 0.9rem;
  font-size: 1rem;
  color: #212529;
}
.form-group input:focus {
  border-color: #385b4f;
  outline: none;
}
.form-group textarea {
  padding: 0.5rem;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  font-size: 1rem;
  color: #212529;
  width: 100%;
  resize: none;
}
.form-group textarea:focus {
  border-color: #4b5d75;
  outline: none;
}

.submit-button {
  padding: 0.6rem 1.4em;
  background-color: #385b4f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}
.submit-button:hover {
  background-color: rgb(55.078125, 68.296875, 85.921875);
}

.person-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 45px;
}
.person-card.special {
  flex-direction: row;
  gap: 26px;
}
.person-card.special .person-details {
  text-align: left;
}
.person-card.special .person-details p {
  font-size: larger;
}
.person-card .image-container .image-inner img {
  transform: scale(1.2);
}
@media (min-width: 768px) {
  .person-card:hover .image-container .image-inner {
    transform: scale(1.2);
  }
  .person-card:hover .image-container .image-inner img {
    transform: scale(1.1);
  }
}
.person-card.style-1 .image-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-12px, 12px);
  background: linear-gradient(135deg, #b8dcd1, #385b4f, #1f2e2b);
  border-radius: 6px;
  z-index: 1;
}
.person-card.style-2 .image-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-12px, 12px);
  background: linear-gradient(135deg, #e4f4ec, #b8dcd1, #385b4f);
  border-radius: 6px;
  z-index: 1;
}
.person-card.style-3 .image-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-12px, 12px);
  background: linear-gradient(135deg, #385b4f, #ffe9d6);
  border-radius: 6px;
  z-index: 1;
}
.person-card .image-container {
  position: relative;
  width: 160px;
  height: 200px;
}
.person-card .image-container .image-inner {
  height: 100%;
  background: #fff;
  border: 2px solid #eaeaea;
  padding: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.person-card .image-container .image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.person-card .person-details {
  text-align: center;
}
.person-card .person-details p {
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}
.person-card .person-details span {
  color: #495057;
}
@media (max-width: 768px) {
  .person-card {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 4px;
  }
  .person-card.special .image-container {
    width: 33%;
    height: auto;
  }
  .person-card .image-container {
    width: 30%;
    height: auto;
    padding-left: 6px;
  }
  .person-card .person-details {
    width: 70%;
    text-align: left;
  }
  .person-card .person-details p {
    line-height: normal;
  }
}

.footer {
  padding-top: 2rem;
  background: #385b4f;
}
.footer .fluid-container {
  padding: 2rem 1rem;
  display: flex;
  gap: 8rem;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer .fluid-container {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__bottom {
  max-width: calc(1400px - 2rem);
  margin: 0 auto;
  border-top: 1px solid #F8F9FA;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  color: #fff;
}
@media (max-width: 1200px) {
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer__bottom__left, .footer__bottom__right {
    padding: 0 1rem;
    text-align: center;
  }
}
.footer__bottom__left, .footer__bottom__right {
  font-size: 0.8rem;
}
.footer .company {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  color: #fff;
}
.footer .company__name {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}
.footer .company__name img {
  width: 4rem;
  height: 4rem;
}
.footer .company__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .company__contacts__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .company__contacts__item i {
  font-size: 1.5rem;
}
.footer .company__socials {
  display: flex;
  gap: 1rem;
  font-size: 2.5rem;
}
.footer .company__socials .mdi {
  cursor: pointer;
  color: #eaeaea;
  transition: all 0.3s ease;
}
.footer .company__socials .mdi:hover {
  color: #c3a850;
  transform: translateY(-2px);
}
.footer .navs {
  flex: 1;
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 6rem;
}
@media (max-width: 1200px) {
  .footer .navs {
    justify-content: start;
  }
}
.footer .navs__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .navs__container__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.footer .navs__container__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .navs__container__items ul .sub-menu {
  display: none;
}
.footer .navs__container__items a {
  text-decoration: none;
  color: #eaeaea;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer .navs__container__items a:hover {
  color: #c3a850;
}

.photo-header {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 10rem 2rem;
  text-align: left;
  min-height: 300px;
}
.photo-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(56, 91, 79, 0.9), rgba(56, 91, 79, 0.7), rgba(56, 91, 79, 0.7), rgba(56, 91, 79, 0.5), rgba(0, 0, 0, 0));
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .photo-header .overlay {
    background: rgba(56, 91, 79, 0.7);
  }
}
.photo-header__meta {
  position: relative;
  z-index: 2;
}
.photo-header__title, .photo-header__subtitle {
  display: block;
  width: 55%;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .photo-header__title, .photo-header__subtitle {
    width: 100%;
  }
}
.photo-header__title {
  font-size: 2.2rem;
  font-weight: 700;
}
.photo-header__subtitle {
  line-height: 1.5;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay.active .modal-content {
  animation: popup 0.3s ease-out;
}

.modal-content {
  background: #F8F9FA;
  color: #495057;
  padding: 3rem 6rem;
  border-radius: 1rem;
  max-width: 1200px;
  margin: 0 1rem;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 2rem 2rem;
  }
  .modal-content .modal-title {
    font-size: 1.4rem;
  }
}

.modal-icon {
  margin-bottom: 1rem;
}
.modal-icon span {
  font-size: 4rem;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #212529;
}

.modal-close {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #385b4f;
  color: #F8F9FA;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

@keyframes popup {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.news-cards .news-card {
  color: inherit;
  text-decoration: none;
}
.news-cards .news-card img {
  border-bottom: unset;
}
.news-cards .news-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.news-cards .news-card:hover, .news-cards .news-card:focus {
  text-decoration: none;
  color: inherit;
}
.news-cards .news-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
.news-cards .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(56, 91, 79, 0.4);
}
.news-cards .news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  border-bottom: 1px solid #eaeaea;
}
.news-cards .news-card .news-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-cards .news-card .news-card-text {
  padding: 0px 16px;
}
.news-cards .news-card .news-card-footer {
  border-top: 1px solid #212529;
  margin: 16px;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
}
.news-cards .news-card .news-card-footer span {
  color: #6C757D;
}
.news-cards .news-card .news-card-footer span.category {
  color: #385b4f;
  font-weight: 600;
  text-transform: uppercase;
}
.news-cards .news-card h3 {
  font-size: 18px;
  margin: 8px 0;
}
.news-cards .news-card p {
  font-size: 16px;
  color: #6C757D;
  line-height: 24px;
  margin-bottom: 14px;
}
.news-cards .news-card span {
  color: #385b4f;
  font-size: 14px;
  cursor: pointer;
}
.news-cards .news-card span:hover {
  color: #c3a850;
}
@media screen and (min-width: 768px) {
  .news-cards .news-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  .news-cards .news-card.featured img {
    height: 100%;
    object-fit: cover;
  }
  .news-cards .news-card.featured .news-card-text {
    padding: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news-cards .news-card.featured {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }
}
.news-cards .no-news {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  grid-column: span 3;
  width: 100%;
  color: #6C757D;
}
.news-cards .news-card.hidden {
  display: none;
}

.verification-result.verified-by-name {
  background: #F8F9FA;
  padding: 2rem 3rem;
  border-radius: 1rem;
  color: #495057;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .verification-result.verified-by-name {
    padding: 2rem;
  }
}
.verification-result.verified-by-name .success-message {
  color: #28a745;
  font-weight: bold;
  margin-bottom: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.verification-result.verified-by-name .success-message i {
  font-size: 2rem;
}
.verification-result.verified-by-name h3 {
  color: #212529;
  font-size: 1.2rem;
  margin: 1rem 0;
}
.verification-result.verified-by-name .verified-info {
  margin-top: 2rem;
}
.verification-result.verified-by-name .verified-info p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #385b4f;
}

.verification-result.verified-by-license {
  background: #F8F9FA;
  padding: 2.5rem 3.5rem;
  border-radius: 1rem;
  color: #495057;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .verification-result.verified-by-license {
    padding: 2rem;
  }
}
.verification-result.verified-by-license .success-message {
  color: #28a745;
  font-weight: bold;
  margin-bottom: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.verification-result.verified-by-license .success-message i {
  font-size: 2rem;
}
.verification-result.verified-by-license h3 {
  color: #212529;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.verification-result.verified-by-license .verified-details {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .verification-result.verified-by-license .verified-details {
    flex-direction: column;
  }
}
.verification-result.verified-by-license .verified-details .engineer-photo {
  flex: 0 0 25%;
}
.verification-result.verified-by-license .verified-details .engineer-photo img {
  max-width: 100%;
  border-radius: 0.5rem;
  border: 2px solid #385b4f;
}
.verification-result.verified-by-license .verified-details .engineer-info {
  flex: 1;
}
.verification-result.verified-by-license .verified-details .engineer-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.verification-result.verified-by-license .verified-details .engineer-info p strong {
  color: #212529;
}

.download-card {
  border-bottom: 1px solid #eaeaea;
  border-radius: 4px;
}
.download-card.hidden {
  display: none;
}
.download-card:hover {
  background: #eaeaea;
}
.download-card a {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #212529;
  padding: 2rem 1rem;
}
.download-card i {
  font-size: 2.5rem;
  color: #385b4f;
}
.download-card__description {
  display: flex;
  flex-direction: column;
}
.download-card__description p, .download-card__description i {
  color: #6C757D;
  font-size: small;
}
.download-card:nth-last-child(1) {
  border-bottom: none;
}

.loading-spinner {
  margin: 2rem auto;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #385b4f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none; /* Initially hidden */
}

/* Animation for the spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.career-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
}
.career-card.hidden {
  display: none;
}
.career-card:hover {
  background: #eaeaea;
}
.career-card a {
  gap: 1rem;
  text-decoration: none;
  color: #212529;
}
.career-card i {
  font-size: 2.5rem;
  color: #385b4f;
}
.career-card__description {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}
.career-card__description h3 {
  margin-bottom: 1rem;
  color: #212529;
}
.career-card__description p {
  font-size: 0.9rem;
  color: #6C757D;
}
.career-card__description p i {
  margin-right: 0.3rem;
  font-size: 1.5rem;
  vertical-align: middle;
}

.about-page {
  display: flex;
  position: relative;
  gap: 2rem;
}
.about-page .scrollspy-container {
  padding: 0 1rem;
}
.about-page .scrollspy-nav {
  position: sticky;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  top: 120px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  max-height: calc(100vh - 120px);
  margin-bottom: 2rem;
}
.about-page .scrollspy-nav .about-nav-link {
  text-decoration: none;
  color: #6C757D;
  transition: all 0.2s ease;
  padding: 4px;
  border-left: 4px solid transparent;
}
.about-page .scrollspy-nav .about-nav-link.active {
  color: #385b4f;
  border-left: 4px solid #4b5d75;
}
.about-page .scrollspy-nav .about-nav-link:hover {
  color: #385b4f;
}
.about-page .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}
.about-page .content .about-section {
  min-height: 60vh;
  margin-bottom: 2rem;
  padding: 30px 0;
  scroll-margin-top: 100px;
}
.about-page .content .about-section .title {
  color: #4b5d75;
  margin-bottom: 12px;
  font-size: 40px;
}
.about-page .content .about-section .title.center {
  text-align: center;
}
.about-page .content .about-section .video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 80%;
  background: #000;
  margin: 20px auto; /* Center the video */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.about-page .content .about-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-page .content .about-section .vision,
.about-page .content .about-section .mission {
  display: flex;
  align-items: start;
  flex-direction: column;
  margin-bottom: 16px;
}
.about-page .content .about-section .vision h2,
.about-page .content .about-section .mission h2 {
  font-size: 40px;
  color: #4b5d75;
  margin-bottom: 12px;
}
.about-page .content .about-section .vision h2 span,
.about-page .content .about-section .mission h2 span {
  font-size: 82px;
  color: #385b4f;
}
.about-page .content .about-section .vision p,
.about-page .content .about-section .mission p {
  font-style: italic;
  letter-spacing: 2px;
  width: 70%;
}
.about-page .content .about-section .vision {
  align-items: end;
}
.about-page .content .about-section .vision p {
  text-align: end;
}
.about-page .content .about-section .board-wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.about-page .content .about-section .board-wrapper .person-card {
  flex: 1 1 100%;
}
.about-page .content .about-section .board-wrapper .person-card:nth-child(1) {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-page .content .about-section .board-wrapper .person-card:nth-child(1) {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .about-page .content .about-section .board-wrapper .person-card:nth-child(n+2) {
    flex: 1 1 calc(20% - 0.8rem);
  }
}
.about-page .content .about-section .past-national-wrapper,
.about-page .content .about-section .gep-officers-wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.about-page .content .about-section .past-national-wrapper .person-card,
.about-page .content .about-section .gep-officers-wrapper .person-card {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .about-page .content .about-section .past-national-wrapper .person-card,
  .about-page .content .about-section .gep-officers-wrapper .person-card {
    flex: 1 1 calc(25% - 0.8rem); /* 4 per row */
  }
}
.about-page .content .about-section .region-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.about-page .content .about-section .region-directory .region-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.about-page .content .about-section .region-directory .region-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #385b4f;
}
.about-page .content .about-section .region-directory .region-card p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #333;
}
.about-page .content .about-section .region-directory .region-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  color: #385b4f;
  text-decoration: none;
}
.about-page .content .about-section .region-directory .region-card a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .about-page .content .about-section {
    padding: 12px 0;
    margin-bottom: 1rem;
  }
  .about-page .content .about-section .title {
    color: #4b5d75;
    margin-bottom: 12px;
    font-size: 24px;
  }
  .about-page .content .about-section .mission h2,
  .about-page .content .about-section .vision h2 {
    font-size: 24px;
  }
  .about-page .content .about-section .mission h2 span,
  .about-page .content .about-section .vision h2 span {
    font-size: 40px;
  }
  .about-page .content .about-section .mission p,
  .about-page .content .about-section .vision p {
    letter-spacing: 1px;
    width: 80%;
  }
}
@media (max-width: 1000px) {
  .about-page .scrollspy-container {
    display: none;
  }
  .about-page .content {
    gap: 2.5rem;
  }
  .about-page .content .about-section .video-container {
    max-width: 100%;
  }
}

.news-events-page {
  padding: 2rem 1rem;
}
.news-events-page .news-events-title {
  margin-bottom: 2rem;
  color: #4b5d75;
}
.news-events-page .news-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-events-page .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-events-page .news-cards {
    grid-template-columns: 1fr;
  }
}
.news-events-page #load-more-trigger {
  margin-top: 6vh;
}
.news-events-page #load-more-trigger .loader {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
}
.news-events-page .news-events-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .news-events-page .news-events-filters {
    gap: 0.4rem;
  }
  .news-events-page .news-events-filters .filter-button {
    padding: 0.4rem 1rem;
  }
}
.news-events-page .filter-button {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  background: white;
  border: 1px solid #eaeaea;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-events-page .filter-button:hover {
  background: #eaeaea;
}
.news-events-page .filter-button.active {
  background: #385b4f;
  color: white;
}

.single-news-event .news-header {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 2rem;
  text-align: left;
  min-height: 300px;
}
.single-news-event .news-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(56, 91, 79, 0.9), rgba(56, 91, 79, 0.8), rgba(56, 91, 79, 0.5), rgba(0, 0, 0, 0));
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .single-news-event .news-header .overlay {
    background: rgba(56, 91, 79, 0.7);
  }
}
.single-news-event .news-header__meta {
  position: relative;
  z-index: 2;
}
.single-news-event .news-header__title, .single-news-event .news-header__date, .single-news-event .news-header__category, .single-news-event .news-header__breadcrumbs {
  width: 55%;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .single-news-event .news-header__title, .single-news-event .news-header__date, .single-news-event .news-header__category, .single-news-event .news-header__breadcrumbs {
    width: 100%;
  }
}
.single-news-event .news-header__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .single-news-event .news-header__title {
    font-size: 2.5rem;
  }
}
.single-news-event .news-header__date {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .single-news-event .news-header__date {
    font-size: 0.8rem;
  }
}
.single-news-event .news-header__category {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}
.single-news-event .news-header__breadcrumbs {
  margin-top: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.single-news-event .news-header__breadcrumbs a {
  text-decoration: none;
  font-weight: bold;
}
.single-news-event .news-header__breadcrumbs a:hover {
  text-decoration: underline;
}
.single-news-event .news-header__breadcrumbs p,
.single-news-event .news-header__breadcrumbs a {
  line-height: normal;
  font-size: 1rem;
  color: #d2f1e4;
}
.single-news-event .news-content {
  padding: 3rem 2rem 0 2rem;
}
.single-news-event .news-content__video {
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
}
.single-news-event .news-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.single-news-event .news-content p .aligncenter {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.single-news-event .news-content p .alignleft {
  display: block;
  margin-right: auto;
}
.single-news-event .news-content p .alignright {
  display: block;
  margin-left: auto;
}
.single-news-event .news-content ul {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding-left: 2rem;
}
.single-news-event .news-content__details {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #495057;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  padding: 1rem 0;
  font-size: small;
}
.single-news-event .news-content__details p {
  margin-bottom: unset;
}
.single-news-event .news-content__details span {
  font-weight: 700;
  color: #385b4f;
  font-size: large;
}
@media screen and (max-width: 1000px) {
  .single-news-event .news-content__details {
    font-size: 0.8rem;
  }
}
.single-news-event .news-media-container {
  display: flex;
  gap: 20px;
  height: 550px;
  margin-bottom: 1rem;
  justify-content: center;
}
.single-news-event .news-media-container.has-both {
  height: 40vh;
}
.single-news-event .news-media-container .news-content__video {
  flex: 1;
}
.single-news-event .news-media-container .news-content__video .featured-video-plus {
  height: 100%;
}
.single-news-event .news-media-container .news-content__video iframe {
  height: 100% !important;
  width: 100%;
}
.single-news-event .news-media-container .news-content__gallery {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .single-news-event .news-media-container {
    flex-direction: column;
    height: 100%;
  }
  .single-news-event .news-media-container.has-both {
    height: unset;
  }
}
.single-news-event .post-navigation {
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid #eaeaea;
}
.single-news-event .post-navigation .prev-post,
.single-news-event .post-navigation .next-post {
  cursor: pointer;
  height: 3rem;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #6C757D;
  border-radius: 100px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s ease-in-out;
  font-size: x-large;
  text-decoration: none;
  color: #495057;
  line-height: 1.5rem;
}
.single-news-event .post-navigation .prev-post:hover,
.single-news-event .post-navigation .next-post:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #385b4f;
  color: #fff;
}
.single-news-event .post-navigation .prev-post span,
.single-news-event .post-navigation .next-post span {
  font-size: 1rem;
}
.single-news-event .post-navigation .next-post {
  text-align: right;
}
.single-news-event .related-articles {
  padding: 3rem 2rem;
}
.single-news-event .related-articles h2 {
  color: #4b5d75;
  margin-bottom: 2rem;
}
.single-news-event .related-articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .single-news-event .related-articles__list {
    flex: unset;
    grid-template-columns: repeat(1, 1fr);
  }
}

.membership-page .register-member-btn,
.membership-page .update-member-btn {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 12px 24px;
  background: #385b4f;
  font-size: 16px;
  text-decoration: none;
}
.membership-page .register-member-btn:hover,
.membership-page .update-member-btn:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .membership-page .register-member-btn,
  .membership-page .update-member-btn {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.membership-page__content h2 {
  margin-bottom: 1.5rem;
  color: #4b5d75;
}
.membership-page .register-member,
.membership-page .update-member {
  padding: 6rem 1rem;
}
.membership-page .register-member {
  display: flex;
  gap: 3rem;
}
.membership-page .register-member__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.membership-page .register-member__image img {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 1000px) {
  .membership-page .register-member__image {
    display: none;
  }
}
.membership-page .register-member__informative {
  flex: 1;
}
.membership-page .register-member__informative .membership-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  margin-bottom: 1rem;
}
.membership-page .register-member__informative .membership-benefits__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.membership-page .register-member__informative .membership-benefits__item__icon {
  width: 3.2rem;
  height: 3.2rem;
  background: #c3a850;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F8F9FA;
  font-size: larger;
}
.membership-page .register-member__informative .membership-benefits__item__desc {
  flex: 1;
}
.membership-page .register-member__informative .membership-benefits__item__desc h3 {
  font-size: large;
  color: #212529;
}
.membership-page .register-member__informative .membership-benefits__item__desc p {
  color: #495057;
}
.membership-page .update-member {
  background: #F8F9FA;
  margin-top: 4rem;
}
.membership-page .update-member .fluid-container .paragraph {
  margin-bottom: 2rem;
}
.membership-page .update-member .fluid-container h3 {
  margin-bottom: 1rem;
  color: #4b5d75;
}
.membership-page .update-member .fluid-container ul {
  list-style: none;
  margin-bottom: 3rem;
}
.membership-page .update-member .fluid-container ul li {
  padding: 0.5rem 0;
}
.membership-page .update-member .fluid-container ul li i {
  color: #385b4f;
  font-size: 1.5rem;
  margin-right: 1rem;
}
.membership-page .update-member .membership-title {
  margin-bottom: 1.5rem;
}
.membership-page .update-member .membership-title h2 {
  margin-bottom: unset;
}
.membership-page .update-member .membership-title p {
  color: #495057;
  font-size: 0.8rem;
}

.single-region {
  padding-bottom: 3rem;
}
.single-region__hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 2rem;
  text-align: left;
  min-height: 300px;
}
.single-region__hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(56, 91, 79, 0.9), rgba(56, 91, 79, 0.8), rgba(56, 91, 79, 0.5), rgba(0, 0, 0, 0));
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .single-region__hero__overlay {
    background: rgba(56, 91, 79, 0.7);
  }
}
.single-region__hero__content {
  position: relative;
  z-index: 2;
}
.single-region__hero__content__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .single-region__hero__content__title {
    font-size: 2.5rem;
  }
}
.single-region__hero__content__breadcrumbs {
  margin-top: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.single-region__hero__content__breadcrumbs a {
  text-decoration: none;
  font-weight: bold;
}
.single-region__hero__content__breadcrumbs a:hover {
  text-decoration: underline;
}
.single-region__hero__content__breadcrumbs p,
.single-region__hero__content__breadcrumbs a {
  line-height: normal;
  font-size: 1rem;
  color: #d2f1e4;
}
.single-region__content {
  padding: 2rem 1rem;
  display: flex;
  gap: 3rem;
}
.single-region__content__body {
  flex: 0 0 calc(70% - 1.5rem);
}
.single-region__content__details {
  flex: 0 0 calc(30% - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.single-region__content__details__address {
  border-bottom: 1px solid #eaeaea;
}
.single-region__content__details h3 {
  margin-bottom: 0.8rem;
}
.single-region__content__details h3, .single-region__content__details h4 {
  color: #212529;
}
.single-region__content__details p {
  color: #495057;
  margin-bottom: 0.5rem;
}
@media (max-width: 1000px) {
  .single-region__content {
    flex-direction: column;
  }
  .single-region__content__content, .single-region__content__map {
    flex: unset;
    width: 100%;
  }
}
.single-region .region-officers-wrapper {
  padding: 0 1rem;
}
.single-region .region-officers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .single-region .region-officers {
    grid-template-columns: 1fr;
  }
}
.single-region .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #4b5d75;
}

.status-page.success {
  background: linear-gradient(135deg, #e4f4ec, #b8dcd1, #385b4f);
  color: #212529;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: "Segoe UI", sans-serif;
}

.status-content {
  text-align: center;
  max-width: 640px;
}
.status-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #385b4f;
  margin-bottom: 1rem;
}
.status-content p {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 2rem;
}
.status-content .btn-home {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #385b4f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.status-content .btn-home:hover {
  background-color: rgb(36.5714285714, 59.4285714286, 51.5918367347);
}

.status-page.error {
  background: linear-gradient(135deg, #e4f4ec, #b8dcd1, #385b4f);
  color: #212529;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: "Segoe UI", sans-serif;
}

.status-content {
  text-align: center;
  max-width: 640px;
}
.status-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #385b4f;
  margin-bottom: 1rem;
}
.status-content p {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 2rem;
}
.status-content .btn-home {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #385b4f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.verification-page {
  min-height: 400px;
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #e4f4ec, #b8dcd1, #385b4f);
}
.verification-page .verification-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.verification-page .verification-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #4b5d75;
}
.verification-page .verification-content .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.verification-page .verification-content .tabs .buttons {
  position: relative;
  display: flex;
  border-radius: 100px;
  background: #e6e6e6;
  overflow: hidden;
  padding: 4px;
  gap: 0;
}
.verification-page .verification-content .tabs .buttons .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #385b4f;
  border-radius: 100px;
  transition: all 0.3s ease;
  z-index: 0;
}
.verification-page .verification-content .tabs .buttons button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 1.5rem;
  min-width: 150px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 1;
  position: relative;
}
.verification-page .verification-content .tabs .buttons button.active {
  color: #fff;
  font-weight: 700;
}
.verification-page .verification-content form {
  width: 100%;
}
.verification-page .verification-content form .g-recaptcha {
  margin-bottom: 1rem;
  transform-origin: 0 0;
  width: fit-content;
}
@media screen and (max-width: 360px) {
  .verification-page .verification-content form .g-recaptcha {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 768px) {
  .verification-page .verification-content {
    padding: 2rem 1rem;
  }
  .verification-page .verification-content .tabs .buttons button {
    padding: 0.4rem 0.6rem;
  }
}

.downloads-page {
  padding: 1rem 0;
  min-height: 400px;
}
.downloads-page h1 {
  color: #4b5d75;
  margin-bottom: 1rem;
}
.downloads-page__content {
  padding: 1rem 1rem;
}
.downloads-page__content__search {
  padding: 1rem 0;
}
.downloads-page .downloads-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.downloads-page .downloads-filters .filter-button {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  background: white;
  border: 1px solid #eaeaea;
  cursor: pointer;
  transition: all 0.3s ease;
}
.downloads-page .downloads-filters .filter-button:hover {
  background: #eaeaea;
}
.downloads-page .downloads-filters .filter-button.active {
  background: #385b4f;
  color: white;
}
@media screen and (max-width: 768px) {
  .downloads-page .downloads-filters {
    gap: 0.4rem;
  }
  .downloads-page .downloads-filters .filter-button {
    padding: 0.4rem 1rem;
  }
}

.sponsors-page__content {
  padding: 2rem 1rem;
}
.sponsors-page .sponsor-section {
  margin-bottom: 4rem;
}
.sponsors-page .sponsor-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.sponsors-page .sponsor-section h2::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
  animation: shine 4s infinite;
  z-index: 2;
}
.sponsors-page .sponsor-section .swiper {
  background: rgba(234, 234, 234, 0.4);
  cursor: grab;
}
.sponsors-page .sponsor-section .swiper:active {
  cursor: grabbing;
}
.sponsors-page .sponsor-section .swiper::before, .sponsors-page .sponsor-section .swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  z-index: 2;
  pointer-events: none;
}
.sponsors-page .sponsor-section .swiper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.sponsors-page .sponsor-section .swiper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.sponsors-page .sponsor-section .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  position: relative;
}
.sponsors-page .sponsor-section .swiper-slide span {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.sponsors-page .sponsor-section .swiper-slide:hover span {
  display: block;
}
.sponsors-page .sponsor-section .swiper-slide img {
  max-height: 100px;
  max-width: 160px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
  border-radius: 8px;
  overflow: hidden;
}
.sponsors-page .sponsor-section .swiper-slide img:hover {
  transform: scale(1.05);
  opacity: 1;
}
.sponsors-page .diamond h2 {
  color: #b9f2ff;
  font-size: 2rem;
  -webkit-text-stroke: 0.2px #000000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.sponsors-page .platinum h2 {
  color: #374151;
  font-size: 1.75rem;
}
.sponsors-page .gold h2 {
  color: #d4af37;
  font-size: 1.5rem;
}
.sponsors-page .silver h2 {
  color: #c0c0c0;
  font-size: 1.25rem;
}
.sponsors-page .bronze h2 {
  color: #cd7f32;
  font-size: 1rem;
}
.sponsors-page .legacy h2 {
  color: #6b7280;
  font-size: 0.75rem;
}
.sponsors-page .sponsor-section .swiper-slide {
  display: flex;
  flex-direction: column;
}
.sponsors-page .sponsor-section.diamond .swiper-slide img {
  scale: 1.4;
}
.sponsors-page .sponsor-section.platinum .swiper-slide img {
  scale: 1.2;
}
.sponsors-page .sponsor-section.gold .swiper-slide img {
  scale: 1.1;
}
.sponsors-page .sponsor-section.silver .swiper-slide img {
  scale: 1;
}
.sponsors-page .sponsor-section.bronze .swiper-slide img {
  scale: 0.9;
}
.sponsors-page .sponsor-section.legacy .swiper-slide img {
  scale: 0.8;
}
.sponsors-page .sponsor-section.diamond .swiper-slide span {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.sponsors-page .sponsor-section.platinum .swiper-slide span {
  font-size: 1.15rem;
  margin-top: 0.5rem;
}
.sponsors-page .sponsor-section.gold .swiper-slide span {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.sponsors-page .sponsor-section.silver .swiper-slide span {
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.sponsors-page .sponsor-section.bronze .swiper-slide span {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.sponsors-page .sponsor-section.legacy .swiper-slide span {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .sponsor-section .swiper-slide {
    height: 100px;
    padding: 0.5rem;
  }
  .sponsor-section .swiper-slide img {
    max-height: 80px;
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}
.services-page__grid {
  padding: 3rem 1rem;
}
.services-page__grid h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #385b4f;
}
@media (max-width: 768px) {
  .services-page__grid h2 {
    font-size: 1.8rem;
  }
}
.services-page__grid .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.services-page__grid .services-grid .service-card {
  max-width: 320px;
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.6rem;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-page__grid .services-grid .service-card__content {
  padding: 0.8rem;
}
.services-page__grid .services-grid .service-card__cta {
  width: auto;
  color: #F8F9FA;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: unset;
  padding: 18px 18px;
  background: #385b4f;
  font-size: 14px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}
.services-page__grid .services-grid .service-card__cta:hover {
  background: #212529;
  color: #F8F9FA;
}
@media screen and (max-width: 768px) {
  .services-page__grid .services-grid .service-card__cta {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.services-page__grid .services-grid .service-card__cta a {
  text-decoration: none;
  color: #F8F9FA;
}
.services-page__grid .services-grid .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.services-page__grid .services-grid .service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #212529;
}
.services-page__grid .services-grid .service-card p {
  font-size: 0.95rem;
  color: #666;
}
.services-page .how-it-works-timeline {
  padding: 3rem 0;
}
.services-page .how-it-works-timeline .text-center {
  text-align: center;
  margin-bottom: 2rem;
  color: #385b4f;
}
.services-page .how-it-works-timeline .timeline {
  position: relative;
  max-width: 900px;
  overflow-x: hidden;
  margin: 0 auto;
}
.services-page .how-it-works-timeline .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  border-radius: 100px;
  background: #e0e0e0;
  transform: translateX(-50%);
  z-index: 1;
}
.services-page .how-it-works-timeline .timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  border-radius: 100px;
  background: #385b4f;
  transform: translateX(-50%);
  z-index: 2;
  height: var(--progress-height, 0px);
  transition: height 0.2s ease-out;
}
.services-page .how-it-works-timeline .timeline .timeline-step {
  position: relative;
  width: 50%;
  padding: 0.6rem 2rem;
  box-sizing: border-box;
}
.services-page .how-it-works-timeline .timeline .timeline-step.left {
  left: 0;
  text-align: right;
}
.services-page .how-it-works-timeline .timeline .timeline-step.right {
  left: 50%;
  text-align: left;
}
.services-page .how-it-works-timeline .timeline .timeline-step .content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
.services-page .how-it-works-timeline .timeline .timeline-step .content h4 {
  color: #495057;
  margin-bottom: 1rem;
}
.services-page .how-it-works-timeline .timeline .timeline-step .content h3 {
  color: #4b5d75;
  margin-bottom: 0.5rem;
}
.services-page .how-it-works-timeline .timeline .timeline-step .content p {
  color: #212529;
}
@media (max-width: 768px) {
  .services-page .how-it-works-timeline .timeline::before, .services-page .how-it-works-timeline .timeline::after {
    display: none;
  }
  .services-page .how-it-works-timeline .timeline .timeline-step {
    width: 100% !important;
    left: 0 !important;
    padding: 1rem 1.5rem;
    text-align: left;
  }
  .services-page .how-it-works-timeline .timeline .timeline-step.left, .services-page .how-it-works-timeline .timeline .timeline-step.right {
    text-align: left;
  }
  .services-page .how-it-works-timeline .timeline .timeline-step .content {
    margin: 0 auto;
    padding: 1.2rem;
  }
  .services-page .how-it-works-timeline .timeline .timeline-step .content h4 {
    font-size: 0.95rem;
  }
  .services-page .how-it-works-timeline .timeline .timeline-step .content h3 {
    font-size: 1.2rem;
  }
  .services-page .how-it-works-timeline .timeline .timeline-step .content p {
    font-size: 0.95rem;
  }
}

.president-page .president-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
}
.president-page .president-profile .profile-image {
  flex: 1 1 300px;
  max-width: 350px;
}
.president-page .president-profile .profile-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.president-page .president-profile .profile-info {
  flex: 2 1 500px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.president-page .president-profile .profile-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.president-page .president-profile .profile-info .message-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.president-page .president-profile .profile-info .message-body p {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .president-page .president-profile {
    flex-direction: column;
  }
  .president-page .president-profile .profile-image,
  .president-page .president-profile .profile-info {
    flex: 1 1 100%;
  }
}

.careers-page {
  padding: 1rem 0;
  min-height: 400px;
}
.careers-page h1 {
  color: #4b5d75;
  margin-bottom: 1rem;
}
.careers-page__content {
  padding: 1rem 1rem;
}
.careers-page__content__filters {
  padding: 1rem 0;
}
.careers-page .careers-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.careers-page .careers-filters .filter-button {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  background: white;
  border: 1px solid #eaeaea;
  cursor: pointer;
  transition: all 0.3s ease;
}
.careers-page .careers-filters .filter-button:hover {
  background: #eaeaea;
}
.careers-page .careers-filters .filter-button.active {
  background: #385b4f;
  color: white;
}
@media screen and (max-width: 768px) {
  .careers-page .careers-filters {
    gap: 0.4rem;
  }
  .careers-page .careers-filters .filter-button {
    padding: 0.4rem 1rem;
  }
}
.careers-page .page-careers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.default-page__content {
  padding: 3rem 2rem;
}
.default-page__content h1 {
  font-size: 2rem;
  color: #4b5d75;
  margin-bottom: 2rem;
}
.default-page__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.default-page__content p .aligncenter {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.default-page__content p .alignleft {
  display: block;
  margin-right: auto;
}
.default-page__content p .alignright {
  display: block;
  margin-left: auto;
}
.default-page__content ul {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding-left: 2rem;
}

.single-career .single-career__hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 10rem 1rem;
  text-align: left;
  min-height: 300px;
}
.single-career .single-career__hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(56, 91, 79, 0.9), rgba(56, 91, 79, 0.8), rgba(56, 91, 79, 0.5), rgba(0, 0, 0, 0));
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .single-career .single-career__hero__overlay {
    background: rgba(56, 91, 79, 0.7);
  }
}
.single-career .single-career__hero__content {
  position: relative;
  z-index: 2;
}
.single-career .single-career__hero__content__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  width: 55%;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .single-career .single-career__hero__content__title {
    font-size: 2.5rem;
    width: 100%;
  }
}
.single-career .single-career__hero__content__breadcrumbs {
  margin-top: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.single-career .single-career__hero__content__breadcrumbs a {
  text-decoration: none;
  font-weight: bold;
}
.single-career .single-career__hero__content__breadcrumbs a:hover {
  text-decoration: underline;
}
.single-career .single-career__hero__content__breadcrumbs p,
.single-career .single-career__hero__content__breadcrumbs a {
  line-height: normal;
  font-size: 1rem;
  color: #d2f1e4;
}
.single-career .single-career__content {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
@media screen and (max-width: 1000px) {
  .single-career .single-career__content {
    flex-direction: column;
  }
}
.single-career .single-career__content__body {
  flex: 2;
  line-height: 1.6;
  color: #495057;
}
.single-career .single-career__content__body p {
  margin-bottom: 1.5rem;
}
.single-career .single-career__content__body p .aligncenter {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.single-career .single-career__content__body p .alignleft {
  display: block;
  margin-right: auto;
}
.single-career .single-career__content__body p .alignright {
  display: block;
  margin-left: auto;
}
.single-career .single-career__content__body ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  line-height: 1.6;
}
.single-career .single-career__content__body hr {
  margin-bottom: 1.5rem;
}
.single-career .single-career__content__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  height: fit-content;
}
@media screen and (max-width: 1000px) {
  .single-career .single-career__content__details {
    padding: 0;
    background: none;
    border: none;
  }
}
.single-career .single-career__content__details .detail-box {
  padding: 0.5rem 0;
}
.single-career .single-career__content__details .detail-box h4 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #385b4f;
}
.single-career .single-career__content__details .detail-box p,
.single-career .single-career__content__details .detail-box a {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.4;
}
.single-career .single-career__content__details .detail-box a {
  text-decoration: none;
}
.single-career .single-career__content__details .detail-box a:hover {
  color: #385b4f;
  text-decoration: underline;
}

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

.fluid-container {
  max-width: 1400px;
  margin: 0 auto;
}
