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

    body {
      font-family: 'Inter', sans-serif;
    }

    /* ── Header / Announcement Bar ── */
    .agbc-header {
      background-color: #DEE8E9;
      height: 55px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .agbc-header__text {
      font-family: 'Inter', sans-serif;
      font-size: 19px;
      font-weight: 300;
      color: #2A5768;
      letter-spacing: 0.01em;
    }

    .agbc-header__btn {
      display: inline-block;
      background-color: #2A5768;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 400;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }

    .agbc-header__btn:hover {
      background-color: #1e3f4f;
    }

    /* ── Navbar ── */
    .agbc-nav {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    }

    .agbc-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    }

    .agbc-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2A5768;
    border-radius: 2px;
    }

    .agbc-nav__logo img {
    height: 30px;
    width: auto;
    }

    .agbc-nav__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    }

    .agbc-nav__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    }

    .agbc-nav__icon-btn:hover svg {
    stroke: #1e3f4f;
    }   
/* ── Slider ── */
.agbc-slider {
  position: relative;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.agbc-slider__inner {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.agbc-slider__track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 16px;
}

.agbc-slider__slide {
  flex-shrink: 0;
  height: 330px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-width: 100%;
}

.agbc-slider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.543);
  border-radius: 12px;
}

.agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 1000px;
  padding: 0 40px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.agbc-slider__content h1 {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.0;
  letter-spacing: -0.05rem;
}

.agbc-slider__content p {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.2;
  letter-spacing: -0.03rem;
}

.agbc-slider__quote {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 28px;
}

.agbc-slider__quote-mark {
  color: #2A5768;
  font-size: 48px;
  line-height: 0;
  vertical-align: -18px;
  font-weight: 700;
}

.agbc-slider__btn {
  display: inline-block;
  background-color: #2A5768;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 9px;
  transition: background-color 0.2s ease;
}

.agbc-slider__btn:hover {
  background-color: #1e3f4f;
}

/* Dots */
.agbc-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.agbc-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.agbc-slider__dot.active {
  background: #ffffff;
}
/* ── Why Section ── */
.agbc-why {
  padding: 80px 80px;
  box-sizing: border-box;
}

.agbc-why__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.agbc-why__left {
  width: 56%;
}

.agbc-why__right {
  width: 44%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.agbc-why__right img {
  width: 250px;
  height: auto;
  display: block;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.agbc-why__title {
  font-size: 31px;
  font-weight: 500;
  color: #2A5768;
  margin-bottom: 36px;
  line-height: 1.1;
  letter-spacing: -0.1rem;
}

.agbc-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agbc-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.04rem;
  color: #2A5768;
  line-height: 1.1;
}

.agbc-why__list li::before {
  content: '';
  display: block;
  min-width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A5768' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
  margin-left: 13px;
}
/* ── Grid Section ── */
.agbc-grid {
  padding: 60px 40px;
  box-sizing: border-box;
  background-color: #DEE8E9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agbc-grid__container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.agbc-grid__left {
  width: 55%;
}

.agbc-grid__right {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding: 0 60px;
}

.agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 37px;  /* horizontal */
  row-gap: 20px;
}

.agbc-grid__item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.agbc-grid__item p {
  font-size: 15px;
  font-weight: 300;
  color: #2A5768;
  margin-top: 8px;
  line-height: 1.2;
  letter-spacing: -0.015rem;
}

.agbc-grid__title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2A5768;
  line-height: 1.2;
  letter-spacing: -0.08rem;
}

.agbc-grid__text {
  font-size: 24px;
  font-weight: 300;
  color: #2A5768;
  line-height: 1.2;
  letter-spacing: -0.06rem;
  margin-bottom: 12px;
}

.agbc-grid__btn {
  display: inline-block;
  background-color: transparent;
  color: #2A5768;
  font-family: 'Inter', sans-serif;
  font-size: 23px;
  letter-spacing: -0.04rem;
  margin-top: 25px;
  font-weight: 400;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid #2A5768;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.agbc-grid__btn:hover {
  background-color: #2A5768;
  color: #ffffff;
}
/* ── Footer ── */
.agbc-footer {
  background-color: #2A5768;
  padding: 60px 40px 0 40px;
  box-sizing: border-box;
}

.agbc-footer__top {
  display: flex;
  align-items: center;
  gap: 40px;
}

.agbc-footer__left {
  width: 35%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.agbc-footer__left img {
  width: 100%;
  max-width: 210px;
  height: auto;
}

.agbc-footer__middle {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agbc-footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.agbc-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.agbc-footer__nav a:hover {
  opacity: 0.7;
}

.agbc-footer__desc {
  font-size: 14px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.4;
  max-width: 560px;
}

.agbc-footer__right {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.agbc-footer__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 20px;
  margin-bottom: 10px;
}

.agbc-footer__social a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.agbc-footer__social a:hover {
  opacity: 0.7;
}

.agbc-footer__btn {
  display: inline-block;
  background-color: #DEE8E9;
  color: #2A5768;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.agbc-footer__btn:hover {
  background-color: #ffffff;
}

/* Bottom Bar */
.agbc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.agbc-footer__bottom a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: opacity 0.2s ease;
}

.agbc-footer__bottom a:hover {
  opacity: 0.7;
}
@media (max-width: 1250px) {
 .agbc-header {
    padding: 0 20px;
    gap: 16px;
  }

  .agbc-header__text {
    font-size: 17px;
  }

  .agbc-header__btn {
    font-size: 15px;
    padding: 6px 12px;
  }

    /* ── Navbar ── */
    .agbc-nav {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    }

    .agbc-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    }

    .agbc-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2A5768;
    border-radius: 2px;
    }

    .agbc-nav__logo img {
    height: 30px;
    width: auto;
    }

    .agbc-nav__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    }

    .agbc-nav__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    }

    .agbc-nav__icon-btn:hover svg {
    stroke: #1e3f4f;
    }   
.agbc-why {
  padding: 70px 60px;
  box-sizing: border-box;
}

.agbc-why__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.agbc-why__left {
  width: 65%;
}

.agbc-why__right {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.agbc-why__right img {
  width: 220px;
  height: auto;
  display: block;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.agbc-why__title {
  font-size: 31px;
  font-weight: 500;
  color: #2A5768;
  margin-bottom: 36px;
  line-height: 1.1;
  letter-spacing: -0.1rem;
}

.agbc-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agbc-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.04rem;
  color: #2A5768;
  line-height: 1.1;
}

.agbc-why__list li::before {
  content: '';
  display: block;
  min-width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A5768' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
  margin-left: 13px;

}
  /* Slider */
  .agbc-slider {
    padding: 5px 40px;
  }

  .agbc-slider__slide {
    height: 280px;
  }
  .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 1000px;
  padding: 0 40px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 28px;
  }

  .agbc-slider__content p {
    font-size: 21px;
  }

  .agbc-slider__quote {
    font-size: 16px;
  }
/* ── Grid Section ── */
.agbc-grid {
  padding: 60px 40px;
  box-sizing: border-box;
  background-color: #DEE8E9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agbc-grid__container {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.agbc-grid__left {
  width: 55%;
}

.agbc-grid__right {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding: 0 30px;
}

.agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 27px;  /* horizontal */
  row-gap: 18px;
}

.agbc-grid__item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.agbc-grid__item p {
  font-size: 15px;
  font-weight: 300;
  color: #2A5768;
  margin-top: 8px;
  line-height: 1.2;
  letter-spacing: -0.015rem;
}

.agbc-grid__title {
  font-size: 33px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2A5768;
  line-height: 1.15;
  letter-spacing: -0.08rem;
}

.agbc-grid__text {
  font-size: 21px;
  font-weight: 300;
  color: #2A5768;
  line-height: 1.2;
  letter-spacing: -0.06rem;
  margin-bottom: 12px;
}

.agbc-grid__btn {
  display: inline-block;
  background-color: transparent;
  color: #2A5768;
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  letter-spacing: -0.04rem;
  margin-top: 25px;
  font-weight: 400;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid #2A5768;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.agbc-grid__btn:hover {
  background-color: #2A5768;
  color: #ffffff;
}
/* ── Footer ── */
.agbc-footer {
  background-color: #2A5768;
  padding: 60px 40px 0 40px;
  box-sizing: border-box;
}

.agbc-footer__top {
  display: flex;
  gap: 40px;
}

.agbc-footer__left {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agbc-footer__left img {
  width: 100%;
  max-width: 200px;
  height: auto;
}


.agbc-footer__middle {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agbc-footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.agbc-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.agbc-footer__nav a:hover {
  opacity: 0.7;
}

.agbc-footer__desc {
  font-size: 14px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.3;
  max-width: 560px;
}

.agbc-footer__right {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.agbc-footer__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 0px;
  margin-bottom: 10px;
}

.agbc-footer__social a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.agbc-footer__social a:hover {
  opacity: 0.7;
}

.agbc-footer__btn {
  display: inline-block;
  background-color: #DEE8E9;
  color: #2A5768;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.agbc-footer__btn:hover {
  background-color: #ffffff;
}

/* Bottom Bar */
.agbc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.agbc-footer__bottom a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: opacity 0.2s ease;
}

.agbc-footer__bottom a:hover {
  opacity: 0.7;
}
}
@media (max-width: 1100px) {
     .agbc-header {
    padding: 0 20px;
    gap: 16px;
  }

  .agbc-header__text {
    font-size: 16px;
  }

  .agbc-header__btn {
    font-size: 14px;
    padding: 6px 12px;
  }
.agbc-why {
  padding: 70px 60px;
  box-sizing: border-box;
}

.agbc-why__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.agbc-why__left {
  width: 70%;
}

.agbc-why__right {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.agbc-why__right img {
  width: 180px;
  height: auto;
  display: block;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.agbc-why__title {
  font-size: 27px;
  font-weight: 500;
  color: #2A5768;
  margin-bottom: 36px;
  line-height: 1.1;
  letter-spacing: -0.1rem;
}

.agbc-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agbc-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.04rem;
  color: #2A5768;
  line-height: 1.1;
}

.agbc-why__list li::before {
  content: '';
  display: block;
  min-width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A5768' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
  margin-left: 13px;

}  /* Slider */
  .agbc-slider {
    padding: 5px 40px;
  }

  .agbc-slider__slide {
    height: 280px;
  }
  .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 40px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 25px;
  }

  .agbc-slider__content p {
    font-size: 18px;
  }

  .agbc-slider__quote {
    font-size: 16px;
  }
  /* ── Grid Section ── */
.agbc-grid {
  padding: 80px 40px;
  box-sizing: border-box;
  background-color: #DEE8E9;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agbc-grid__container {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.agbc-grid__left {
  width: 60%;
}

.agbc-grid__right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding: 0 10px;
}

.agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;  /* horizontal */
  row-gap: 18px;
}

.agbc-grid__item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.agbc-grid__item p {
  font-size: 13px;
  font-weight: 300;
  color: #2A5768;
  margin-top: 8px;
  line-height: 1.2;
  letter-spacing: -0.015rem;
}

.agbc-grid__title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2A5768;
  line-height: 1.15;
  letter-spacing: -0.08rem;
}

.agbc-grid__text {
  font-size: 17px;
  font-weight: 300;
  color: #2A5768;
  line-height: 1.2;
  letter-spacing: -0.06rem;
  margin-bottom: 12px;
}

.agbc-grid__btn {
  display: inline-block;
  background-color: transparent;
  color: #2A5768;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  letter-spacing: -0.04rem;
  margin-top: 25px;
  font-weight: 400;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid #2A5768;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.agbc-grid__btn:hover {
  background-color: #2A5768;
  color: #ffffff;
}
 .agbc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .agbc-footer__left,
  .agbc-footer__middle,
  .agbc-footer__right {
    width: 55vw;
  }

  .agbc-footer__left {
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .agbc-footer__left img {
    max-width: 220px;
    width: auto;
  }

  .agbc-footer__nav {
    justify-content: flex-start;
    gap: 30px;
  }

  .agbc-footer__desc {
    text-align: left;
    margin-bottom: 30px;
  }

  .agbc-footer__right {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__social {
    justify-content: flex-start;
    width: auto;
    gap: 30px;
  }

  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
  }
}
/* ── Tablet (810px and below) ── */
@media (max-width: 900px) {

  /* Header */
  .agbc-header {
    padding: 0 20px;
    gap: 16px;
  }

  .agbc-header__text {
    font-size: 15px;
  }

  .agbc-header__btn {
    font-size: 14px;
    padding: 6px 12px;
  }

  /* Navbar */
  .agbc-nav {
    padding: 14px 40px;
  }

  /* Slider */
  .agbc-slider {
    padding: 5px 40px;
  }

  .agbc-slider__slide {
    height: 280px;
  }
 .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 750px;
  padding: 0 40px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 22px;
  }

  .agbc-slider__content p {
    font-size: 17px;
  }

  .agbc-slider__quote {
    font-size: 16px;
  }

  /* Why Section */
  .agbc-why {
    padding: 50px 80px;
  }

  .agbc-why__container {
    flex-direction: column;
  }

  .agbc-why__left,
  .agbc-why__right {
    width: 100%;
  }

  .agbc-why__right {
    justify-content: center;
  }

  .agbc-why__title {
    font-size: 27px;
    max-width: 90%;
  }

  .agbc-why__list li {
    font-size: 19px;
  }

  /* Grid Section */
  .agbc-grid {
    padding: 80px 80px;
    min-height: unset;
  }

  .agbc-grid__container {
    flex-direction: column;

  }

  .agbc-grid__left,
  .agbc-grid__right {
    width: 100%;
  }

  .agbc-grid__right {
    padding: 0;
  }
  .agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 35px;  /* horizontal */
  row-gap: 20px;
}

  .agbc-grid__item img {
    height: 120px;
  }

.agbc-grid__title {
  margin-top: 30px;
  font-size: 31px;
  margin-left: auto;
  margin-right: auto;
  width: 83%;
}

.agbc-grid__text {
  font-size: 20px;
  width: 83%;
  margin-left: auto;
  margin-right: auto;
}

.agbc-grid__btn {
  width: 83%;
  margin-left: auto;
  margin-right: auto;
}

 .agbc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .agbc-footer__left,
  .agbc-footer__middle,
  .agbc-footer__right {
    width: 60vw;
  }

  .agbc-footer__left {
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .agbc-footer__left img {
    max-width: 200px;
    width: auto;
  }

  .agbc-footer__nav {
    justify-content: flex-start;
    gap: 30px;
  }

  .agbc-footer__desc {
    text-align: left;
    margin-bottom: 30px;
  }

  .agbc-footer__right {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__social {
    justify-content: flex-start;
    width: auto;
    gap: 30px;
  }

  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
  }
}
@media (max-width: 800px) {
    /* Slider */
    .agbc-nav__logo img {
    height: 27px;
    width: auto;
    }
  .agbc-slider {
    padding: 5px 40px;
  }

  .agbc-slider__slide {
    height: 280px;
  }
 .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  padding: 0 40px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 22px;
  }

  .agbc-slider__content p {
    font-size: 17px;
  }

  .agbc-slider__quote {
    font-size: 16px;
  }
  .agbc-slider__btn {
  display: inline-block;
  background-color: #2A5768;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 13px;
  transition: background-color 0.2s ease;
}
/* Why Section */
  .agbc-why {
    padding: 50px 60px;
  }

  .agbc-why__container {
    flex-direction: column;
  }

  .agbc-why__left,
  .agbc-why__right {
    width: 100%;
  }

  .agbc-why__right {
    justify-content: center;
  }

  .agbc-why__title {
    font-size: 26px;
    max-width: 100%;
  }

  .agbc-why__list li {
    font-size: 18px;
  }

  
  /* Grid Section */
  .agbc-grid {
    padding: 80px 70px;
    min-height: unset;
  }

  .agbc-grid__container {
    flex-direction: column;

  }

  .agbc-grid__left,
  .agbc-grid__right {
    width: 100%;
  }

  .agbc-grid__right {
    padding: 0;
  }
  .agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;  /* horizontal */
  row-gap: 19px;
}

  .agbc-grid__item img {
    height: 110px;
  }

.agbc-grid__title {
  margin-top: 20px;
  font-size: 29px;
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: auto;
  width: 90%;
}

.agbc-grid__text {
  font-size: 18px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}

.agbc-grid__btn {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
 .agbc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .agbc-footer__left,
  .agbc-footer__middle,
  .agbc-footer__right {
    width: 72vw;
  }

  .agbc-footer__left {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__left img {
    max-width: 200px;
    width: auto;
  }

  .agbc-footer__nav {
    justify-content: flex-start;
    gap: 30px;
  }

  .agbc-footer__desc {
    text-align: left;
    margin-bottom: 30px;
  }

  .agbc-footer__right {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__social {
    justify-content: flex-start;
    width: auto;
    gap: 30px;
  }

  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
  }
}
@media (max-width: 700px) {
       /* Slider */
  .agbc-slider {
    padding: 5px 40px;
  }

  .agbc-slider__slide {
    height: 280px;
  }
 .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 500px;
  padding: 0 30px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 21px;
  }

  .agbc-slider__content p {
    font-size: 16px;
  }

  .agbc-slider__quote {
    font-size: 15px;
  }
  .agbc-slider__btn {
  display: inline-block;
  background-color: #2A5768;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 13px;
  transition: background-color 0.2s ease;
}
/* Why Section */
  .agbc-why {
    padding: 40px 60px;
  }

  .agbc-why__container {
    flex-direction: column;
  }

  .agbc-why__left,
  .agbc-why__right {
    width: 100%;
  }

  .agbc-why__right {
    justify-content: center;
  }
  .agbc-nav__logo img {
    height: 25px;
    width: auto;
    }

  .agbc-why__title {
    font-size: 24px;
    max-width: 100%;
  }

  .agbc-why__list li {
    font-size: 16px;
  }

  /* Grid Section */
  .agbc-grid {
    padding: 70px 40px;
    min-height: unset;
  }

  .agbc-grid__container {
    flex-direction: column;

  }

  .agbc-grid__left,
  .agbc-grid__right {
    width: 100%;
  }

  .agbc-grid__right {
    padding: 0;
  }
  .agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 27px;  /* horizontal */
  row-gap: 19px;
}

  .agbc-grid__item img {
    height: 100px;
  }

.agbc-grid__title {
  margin-top: 20px;
  font-size: 29px;
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: auto;
  width: 90%;
}

.agbc-grid__text {
  font-size: 18px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}

.agbc-grid__btn {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
 .agbc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .agbc-footer__left,
  .agbc-footer__middle,
  .agbc-footer__right {
    width: auto;
  }

  .agbc-footer__left {
    justify-content: flex-start;
    margin-bottom: 15px;
  }

  .agbc-footer__left img {
    max-width: 180px;
    width: auto;
  }

  .agbc-footer__nav {
    justify-content: flex-start;
    gap: 30px;
    font-size: 14px;
  }

  .agbc-footer__desc {
    text-align: left;
    margin-bottom: 20px;
    font-size: 13px;
  }

  .agbc-footer__right {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__social {
    justify-content: flex-start;
    width: auto;
    gap: 30px;
  }

  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
  }
}
@media (max-width: 600px) {
       /* Slider */
  .agbc-slider {
    padding: 5px 30px;
  }

  .agbc-slider__slide {
    height: 280px;
  }
 .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 430px;
  padding: 0 25px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 19px;
    letter-spacing: -0.03rem;
  }

  .agbc-slider__content p {
    font-size: 15px;
    letter-spacing: -0.03rem;
  }

  .agbc-slider__quote {
    font-size: 13px;
    letter-spacing: -0.03rem;
  }
  .agbc-slider__btn {
  display: inline-block;
  background-color: #2A5768;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 13px;
  transition: background-color 0.2s ease;
}
/* Why Section */
  .agbc-why {
    padding: 40px 50px;
  }

  .agbc-why__container {
    flex-direction: column;
  }

  .agbc-why__left,
  .agbc-why__right {
    width: 100%;
  }

  .agbc-why__right {
    justify-content: center;
  }

  .agbc-why__title {
    font-size: 23px;
    max-width: 100%;
    letter-spacing: -0.06rem;
  }

  .agbc-why__list li {
    font-size: 15px;
    letter-spacing: -0.03rem;
  }

  /* Grid Section */
  .agbc-grid {
    padding: 70px 30px;
    min-height: unset;
  }

  .agbc-grid__container {
    flex-direction: column;
  }

  .agbc-grid__left,
  .agbc-grid__right {
    width: 100%;
  }

  .agbc-grid__right {
    padding: 0;
  }
  .agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;  /* horizontal */
  row-gap: 14px;
}

  .agbc-grid__item img {
    height: 90px;
  }
  .agbc-grid__item p {
  font-size: 11px;
  font-weight: 300;
  color: #2A5768;
  margin-top: 8px;
  line-height: 1.1;
  letter-spacing: -0.015rem;
}

.agbc-grid__title {
  margin-top: 20px;
  font-size: 24px;
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: auto;
  width: 90%;
  letter-spacing: -0.06rem;
}

.agbc-grid__text {
  font-size: 16px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
  letter-spacing: -0.04rem;
}

.agbc-grid__btn {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid #2A5768;
  letter-spacing: -0.03rem;
  padding: 10px 28px;
}
.agbc-nav__logo img {
    height: 24px;
    width: auto;
    }


 .agbc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .agbc-footer__left,
  .agbc-footer__middle,
  .agbc-footer__right {
    width: auto;
  }

  .agbc-footer__left {
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .agbc-footer__left img {
    max-width: 160px;
    width: auto;
  }

  .agbc-footer__nav {
    justify-content: flex-start;
    gap: 15px;
  }
  .agbc-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

  .agbc-footer__desc {
    text-align: left;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .agbc-footer__right {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__social {
    justify-content: flex-start;
    width: auto;
    gap: 30px;
  }

  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
  }
}
@media (max-width: 500px) {
     .agbc-header {
      background-color: #DEE8E9;
      height: 55px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
    }

    .agbc-header__text {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: #2A5768;
      letter-spacing: 0.01em;
    }

    .agbc-header__btn {
      display: inline-block;
      background-color: #2A5768;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 400;
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }

    /* ── Navbar ── */
    .agbc-nav {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    }

    .agbc-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    }

    .agbc-nav__hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #2A5768;
    border-radius: 2px;
    }

    .agbc-nav__logo img {
    height: 23px;
    width: auto;
    }

    .agbc-nav__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    }

    .agbc-nav__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    }

    .agbc-nav__icon-btn:hover svg {
    stroke: #1e3f4f;
    }   
       /* Slider */
  .agbc-slider {
    padding: 5px 20px;
  }

  .agbc-slider__slide {
    height: 300px;
  }
 .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 350px;
  padding: 0 20px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 19px;
    letter-spacing: -0.03rem;
  }

  .agbc-slider__content p {
    font-size: 15px;
    letter-spacing: -0.03rem;
  }

  .agbc-slider__quote {
    font-size: 13px;
    letter-spacing: -0.03rem;
  }
  .agbc-slider__btn {
  display: inline-block;
  background-color: #2A5768;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 13px;
  transition: background-color 0.2s ease;
}
/* Why Section */
  .agbc-why {
    padding: 40px 40px;
  }

  .agbc-why__container {
    flex-direction: column;
  }

  .agbc-why__left,
  .agbc-why__right {
    width: 100%;
  }

  .agbc-why__right {
    justify-content: center;
  }

  .agbc-why__title {
    font-size: 21px;
    max-width: 100%;
    letter-spacing: -0.06rem;
  }

  .agbc-why__list li {
    font-size: 15px;
    letter-spacing: -0.03rem;
  }

  /* Grid Section */
  .agbc-grid {
    padding: 60px 25px;
    min-height: unset;
  }

  .agbc-grid__container {
    flex-direction: column;
  }

  .agbc-grid__left,
  .agbc-grid__right {
    width: 100%;
  }

  .agbc-grid__right {
    padding: 0;
  }
  .agbc-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;  /* horizontal */
  row-gap: 14px;
}

  .agbc-grid__item img {
    height: 80px;
  }
  .agbc-grid__item p {
  font-size: 10px;
  font-weight: 300;
  color: #2A5768;
  margin-top: 8px;
  line-height: 1.1;
  letter-spacing: -0.015rem;
}

.agbc-grid__title {
  margin-top: 10px;
  font-size: 22px;
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: auto;
  width: 95%;
  letter-spacing: -0.06rem;
}

.agbc-grid__text {
  font-size: 15px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
  letter-spacing: -0.04rem;
}

.agbc-grid__btn {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid #2A5768;
  letter-spacing: -0.03rem;
  padding: 10px 28px;
}
.agbc-footer {
  background-color: #2A5768;
  padding: 60px 30px 0 30px;
  box-sizing: border-box;
}

 .agbc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .agbc-footer__left,
  .agbc-footer__middle,
  .agbc-footer__right {
    width: auto;
  }

  .agbc-footer__left {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .agbc-footer__left img {
    max-width: 150px;
    width: auto;
  }

  .agbc-footer__nav {
    justify-content: flex-start;
    gap: 10px;
  }
  .agbc-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

  .agbc-footer__desc {
    text-align: left;
    margin-bottom: 20px;
    font-size: 11px;
  }

  .agbc-footer__right {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .agbc-footer__social {
    justify-content: flex-start;
    width: auto;
    gap: 30px;
  }

  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
  }
}

@media (max-width: 400px) {

       /* Slider */
  .agbc-slider {
    padding: 5px 20px;
  }

  .agbc-slider__slide {
    height: 300px;
  }
 .agbc-slider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 300px;
  padding: 0 20px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);}

  .agbc-slider__content h1 {
    font-size: 17px;
    letter-spacing: -0.03rem;
  }

  .agbc-slider__content p {
    font-size: 14px;
    letter-spacing: -0.03rem;
  }

  .agbc-slider__quote {
    font-size: 13px;
    letter-spacing: -0.03rem;
  }
  .agbc-slider__btn {
  display: inline-block;
  background-color: #2A5768;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 13px;
  transition: background-color 0.2s ease;
  }
  .agbc-footer__btn {
    width: 100%;
    padding: 12px 32px;
    font-size: 14px;
    letter-spacing: -0.02rem;
  }
}