section.intro-hero {
  padding-top: 37px;
  position: relative;
}

.intro-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  background-image: url("../image-gt/intro-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.intro-hero h1 {
  text-align: center;
  color: #f7f8f8;
  font-size: 24px;
  margin-bottom: 42px;
}

.intro-hero-img {
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 42px;
}

.intro-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
}

.intro-hero p {
  color: #41424b;
  font-size: 20px;
  line-height: 1.6;
}

section.intro-mission {
  padding-bottom: 0px;
}

.intro-mission-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 26px;
  margin-bottom: 48px;
}

.mission-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

.intro-mission-item:first-child .mission-content h2 {
  color: #3335a0;
}

.intro-mission-item:last-child .mission-content h2 {
  color: #e24a14;
}

.mission-content p {
  color: #41424b;
  font-size: 20px;
  line-height: 1.8;
}

.mission-img {
  border-radius: 16px;
  overflow: hidden;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managament-inner h2,
.facilities-inner h2 {
  font-size: 32px;
  color: #e24a14;
  text-align: center;
  margin-bottom: 90px;
}

.management-list {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: flex-end;
  gap: 24px;
}

.management-item {
  background: linear-gradient(180deg, #242659 0%, #2887bf 100%);
  border-radius: 16px;
  height: fit-content;
}

.management-item:nth-child(2) {
  background: linear-gradient(180deg, #f16825 0%, #ffc0a2 100%);
}

.management-item:nth-child(2) h3 {
  color: #f16825;
}

.management-item:nth-child(2) .management-item-content {
  background-color: #fdead7;
}

.management-item-content {
  padding: 24px 10px;
  background-color: #eff3fe;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  text-align: center;
}

.management-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4b4fe0;
  margin-bottom: 8px;
}

.management-item-content p {
  font-size: 16px;
  font-weight: 500;
  color: #41424b;
  line-height: 1.4;
}

.management-item-img {
  display: flex;
  justify-content: center;
  margin-top: -50px;
}

.management-item-img img {
  object-fit: cover;
}

section.intro-management {
  padding-top: 0px;
  padding-bottom: 0px;
}

section.intro-facilities {
  padding-top: 60px;
  overflow: visible;
}

.facilities-slider-wrap {
  position: relative;
}

.facilities-slider {
  height: 100%;
}

.facilities-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.facilities-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #41424b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: color 0.2s, opacity 0.2s;
}

.facilities-btn:hover {
  color: #2c2f8f;
  opacity: 0.9;
}

.facilities-slider-wrap .swiper-pagination {
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.facilities-slider-wrap .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d0d4de;
  opacity: 1;
  transition: background 0.2s;
}

.facilities-slider-wrap .swiper-pagination-bullet-active {
  background: #2c2f8f;
}

.facilities-slider .swiper-slide {
  max-width: 80%;
  height: 400px;
  transform: scale(0.6) !important;
  border-radius: 24px;
  overflow: hidden;
}

.facilities-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 2s ease;
}

.facilities-slider .swiper-slide:hover img {
  transform: scale(1.1);
}

.facilities-slider .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
}

.facilities-slider .swiper-slide.swiper-slide-active img {
  opacity: 1;
}

.facilities-slider .swiper-slide.swiper-slide-next {
  transform: scale(0.8) translateX(-100%) !important;
}

.facilities-slider .swiper-slide.swiper-slide-prev {
  transform: scale(0.8) translateX(100%) !important;
}

.facilities-slider .swiper-slide-prev-prev {
  transform: scale(0.6) translateX(265%) !important;
}

.facilities-slider .swiper-slide-next-next {
  transform: scale(0.6) translateX(-265%) !important;
}

.facilities-slider .swiper-wrapper {
  align-items: center;
}

.swiper-slide-shadow {
  display: none;
}

.facilities-slider-controls .swiper-pagination {
  width: fit-content !important;
  top: 50% !important;
  transform: translateY(50%);
}

@media screen and (max-width: 1366px) {

  .intro-hero p,
  .mission-content p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1023px) {
  .intro-hero::before {
    max-height: 300px;
  }

  .intro-hero h1 {
    font-size: 20px;
  }

  .intro-hero p,
  .mission-content p {
    font-size: 18px;
    line-height: 1.6;
  }

  .mission-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .managament-inner h2,
  .facilities-inner h2 {
    font-size: 24px;
    margin-bottom: 60px;
  }

  .management-item-content h3 {
    font-size: 18px;
  }

  .management-item-content p {
    font-size: 14px;
  }

  .facilities-slider .swiper-slide img {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .intro-hero::before {
    max-height: 200px;
  }

  .intro-hero h1 {
    margin-bottom: 16px;
  }

  .intro-hero-img {
    margin-bottom: 24px;
  }

  .intro-hero-img img {
    height: 225px;
    object-fit: cover;
  }

  .intro-mission-item {
    display: flex;
    flex-direction: column-reverse;
  }

  .intro-mission-item:last-child {
    flex-direction: column;
  }

  .management-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .management-item:nth-child(2) {
    order: -1;
  }

  .management-item:nth-child(3) {
    order: 1;
  }

  .management-item-img {
    margin-top: -30px;
  }

  .management-item-img img {
    max-width: 80%;
  }

  .management-item-content {
    padding: 16px 12px;
  }

  .management-item-content h3 {
    font-size: 16px;
  }

  .management-item-content p {
    font-size: 12px;
  }

  .facilities-slider .swiper-slide img {
    height: 100%;
    border-radius: 12px;
  }

  .facilities-slider .swiper-slide {
    max-width: 100%;
  }

  .facilities-slider .swiper-slide {
    transform: scale(1) !important;
  }

  .facilities-slider-controls .swiper-pagination {
    width: 100% !important;
  }

  .intro-hero p,
  .mission-content p {
    font-size: 16px;
  }

  .facilities-slider .swiper-slide {
    height: 160px;
  }

  .facilities-inner h2 {
    margin-bottom: 20px;
  }
}