/* Font Face Declarations */
body {
  padding-top: 175px;
}



.hero-section {
  padding: 0px 0 60px;
  background-color: #FFFFFF;
}
/* Hero Section with Carousel Background */
.hero-section .hero-content {
  position: relative;
  height: 530px;
  padding: 10px 0 10px;
  /* overflow: hidden; */
  border-radius: 12px;
}
/* Hero Carousel as Background */
.hero-section .hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.hero-section .hero-carousel .swiper-wrapper {
  height: 100%;
}
.hero-section .hero-carousel .swiper-slide {
  height: 100%;
  width: 100%;
}
.hero-section .hero-carousel-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  display: block;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.hero-section .hero-carousel-img-mobile {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* PC 端（max 1200px 容器）左侧文字：宽度约束、留白、与设计图一致 */
.hero-section .hero-text {
  position: relative;
  z-index: 2;
  max-width: 650px;
  min-width: 0;
  padding-left: 0;
}
.hero-section .hero-title {
  font-size: 50px;
  font-weight: 500;
  color: #333333;
  line-height: 70px;
  margin-bottom: 56px;
  letter-spacing: -0.03em;
  max-width: 465px;
  font-family: 'AlibabaPuHuiTi_2_95_ExtraBold';
}
.hero-section .hero-features {
  list-style: none;
  /* padding: 0 0 0 28px; */
  margin: 0;
}
.hero-section .feature-item {
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 28px;
  position: relative;
  padding-left: 0;
}
.hero-section .feature-item:last-child {
  margin-bottom: 0;
}
.hero-section .feature-item {
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .feature-item:hover:not(.active) {
  transform: translateX(4px);
}

.hero-section .feature-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0;
  width: 4px;
  height: 0;
  background-color: #E63946;
  z-index: 1;
  transition: height 0s;
}
.hero-section .feature-item.active::before {
  height: 100%;
  transition: height 2s ease;
}
.hero-section .feature-item.active {
  transform: none;
}
.hero-section .feature-item.active .feature-text {
  font-weight: 600;
  color: #333;
}
.hero-section .feature-item .feature-text {
  display: flex;
  font-size: 16px;
  color: #333;
  line-height: 22px;
  font-weight: 300;
  font-family: 'AlibabaPuHuiTi_2_55_Regular';
}
/* Featured Degrees：海洋+钟楼背景，标题居中，大学信息左对齐，卡片带半透明遮罩 */
.featured-degrees-section {
  padding: 120px 0;
  position: relative;
  /* PC 端背景图铺满区域，居右对齐，避免左侧留白 */
  background-image: url('../../../enImages/index/2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* 高度随屏幕高度自适应：小屏不太矮，大屏不太高 */
  /* min-height: clamp(520px, 660px); */
  min-height: 520px;
  object-fit: cover;
}
#programs1.featured-degrees-section {
  background-image: url('../../../enImages/index/11.png');
  background-position: right top;
}
/* Featured Degrees 轮播容器（PC 端 650px） */
.featured-degrees-carousel {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

/* 页面模块之间的统一间距（Featured Degrees / Degrees / Beacon）
   只给相邻模块之间加间距，避免叠加；PC 端为 60px */
.hero-section + .featured-degrees-carousel,
.featured-degrees-carousel + .degrees-section,
.degrees-section + .beacon-section {
  margin-top: 60px;
}
.featured-degrees-carousel-inner {
  position: relative;
  width: 100%;
  min-height: 650px;
}
.featured-degree-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 650px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.featured-degree-slide.active {
  opacity: 1;
  z-index: 2;
}
.featured-degrees-carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.featured-degrees-carousel-dots .featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.featured-degrees-carousel-dots .featured-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.featured-degrees-carousel-dots .featured-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.featured-degrees-section .container {
  position: relative;
  z-index: 2;
}
/* Degree Cards Section with Ocean Background */
.degrees-section {
  /* padding: 0 0 160px; */
  position: relative;
  /* background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 0%, #E8F4F8 0%, #E8F4F8 100%); */
  /* overflow: hidden; */
  /* --parallax-y: 0px; */
}

/* PC 端：degrees-section 与上方轮播无间距 */
.featured-degrees-carousel + .degrees-section {
  margin-top: 0;
}
/* .degrees-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url('../../../enImages/index/3.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #E8F4F8;
  z-index: 0;
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 0.1s ease-out;
} */
/* .degrees-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 280px;
  height: 520px;
  background-image: url('../../../enImages/index/4.png');
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: 1;
} */
.degrees-section .container {
  position: relative;
  z-index: 2;
  /* bottom: 0; */
}
.featured-degrees-section .section-title {
  font-size: 40px;
  font-weight: 500;
  color: #333;
  /* text-align: center; */
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.featured-degrees-section .university-info-wrapper {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}
.featured-degrees-section .university-info {
  max-width: 50%;
  position: relative;
  width: 100%;
  flex: 1 1 auto;
}
.featured-degrees-section .university-image-section {
  display: none;
  position: relative;
  width: 100%;
}
.featured-degrees-section .university-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.featured-degrees-section .university-image-mobile-bg {
  display: none;
}
.featured-degrees-section .btn-consultation-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.featured-degrees-section .btn-consultation-desktop {
  display: block;
}
.featured-degrees-section .btn-consultation-mobile {
  display: none;
}
.featured-degrees-section .university-info .university-title {
  font-size: 24px;
  font-weight: 500;
  color: #43537D;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.featured-degrees-section .university-info .university-description {
  font-size: 16px;
  color: #43537D;
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 300;
}
.featured-degrees-section .btn-consultation {
  background-color: rgba(255, 255, 255, 0.85);
  color: #2B2D42;
  border: 1px solid rgba(208, 228, 236, 0.5);
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.featured-degrees-section .btn-consultation:hover {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: #ec0000;
  color: #ec0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.degrees-section .degrees-cards-wrapper {
  position: relative;
  z-index: 3;
  /* padding-top: 80px; */
}
.degrees-section .degrees-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  max-width: 100%;
  margin-top: -60px;
}
.degrees-section .degree-card {
  position: relative;
  height: 218px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 100px;
}
.degrees-section .degree-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
.degrees-section .degree-card .degree-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.degrees-section .degree-card .degree-card-bg-mobile {
  display: none;
}
/* MCIT 等卡片：悬浮时显示 hover 图（如 6-2） */
.degrees-section .degree-card .degree-card-bg-hover {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.degrees-section .degree-card:hover .degree-card-bg-hover {
  opacity: 1;
}
.degrees-section .degree-card:hover .degree-card-bg-mobile.degree-card-bg-hover {
  display: block;
}
.degrees-section .degree-card .degree-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  transition: background 0.3s ease;
}
.degrees-section .degree-card:hover .degree-card-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
}
.degrees-section .degree-card .degree-card-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0px 17px;
  z-index: 3;
  color: #fff;
  text-align: left;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.degrees-section .degree-card .degree-card-content-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  padding-top: 32px;
  padding-left: 17px;
  padding-right: 17px;
  padding-bottom: 10px;
  z-index: 3;
  color: #fff;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.degrees-section .degree-card .degree-card-content-hover .degree-separator {
  width: 40px;
  height: 3px;
  background-color: #E63946;
  margin: 12px 0 16px 0;
  border-radius: 2px;
}
.degrees-section .degree-card .degree-card-content-hover .degree-card-btn {
  position: absolute;
  bottom: 6px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  padding: 0;
}
.degrees-section .degree-card .degree-card-content-hover .degree-card-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: red;
  transform: scale(1.1);
}
.degrees-section .degree-card .degree-card-content-hover .degree-card-btn:hover svg path {
  stroke: red;
}
.degrees-section .degree-card .degree-card-content-hover .degree-card-btn svg {
  width: 16px;
  height: 16px;
}
.degrees-section .degree-card:hover .degree-card-content {
  opacity: 0;
  visibility: hidden;
}
.degrees-section .degree-card:hover .degree-card-content-hover {
  opacity: 1;
  visibility: visible;
}
.degrees-section .degree-card.degree-card-active .degree-card-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: #E63946;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.degrees-section .degree-card.degree-card-active .degree-card-content {
  padding-left: 45px;
}
.degrees-section .degree-card.degree-card-active .degree-title {
  padding-left: 0;
}
.degrees-section .degree-card.degree-card-active .degree-card-content-hover {
  padding-left: 17px;
}
.degrees-section .degree-card.degree-card-active:hover .degree-card-content::before {
  opacity: 0;
}
.degrees-section .degree-card.degree-card-active:hover .degree-card-content-hover::before {
  display: none;
}
.degrees-section .degree-card .degree-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
}
.degrees-section .degree-card .degree-card-content-hover .degree-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.degrees-section .degree-card .degree-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.55;
  font-weight: 300;
}
.degrees-section .degree-card .degree-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-top: 0;
  font-weight: 300;
}
.degrees-section .degree-card .degree-card-content-hover .degree-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin-top: 0;
}
.degrees-section .degree-card .info-icon {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 4;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.degrees-section .degree-card .info-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}
.degrees-section .degree-card .info-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.beacon-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  position: relative;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.beacon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(255, 255, 255, 0.95); */
  z-index: 1;
}
.beacon-section .container {
  position: relative;
  z-index: 2;
  padding: 0;
}
.beacon-section .beacon-content {
  display: block;
}
.beacon-section .beacon-text-section {
  width: 100%;
}
.beacon-section .beacon-image-section {
  display: none;
}
.beacon-section .feature-cards {
  margin-top: 70px;
}
.beacon-section .beacon-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.beacon-section .beacon-image-mobile {
  display: none;
}
.beacon-section .feature-card .feature-icon-img-mobile {
  display: none;
}
.beacon-section .section-title {
  font-size: 48px;
  font-weight: 500;
  color: #333;
  text-align: left;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  line-height: 1.2;
    font-family: 'AlibabaPuHuiTi_2_65_Bold';
}
.beacon-section .beacon-description {
  font-size: 16px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 60px;
  font-weight: 300;
  max-width: 582px;
}
.beacon-section .feature-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
.beacon-section .feature-card {
  flex: 1 1 0;
  min-width: 0;
  background-color: #FFFFFF;
  padding: 10px 10px 24px;
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 180px;
  max-height: 233px;
}
.beacon-section .feature-card:hover,
.beacon-section .feature-card.active {
  transform: translateY(-6px);
  box-shadow: 0px 6px 14px 0px rgba(0,0,0,0.2);
}
.beacon-section .feature-card .feature-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beacon-section .feature-card .feature-icon img {
  width: 100%;
  /* max-width: 226px; */
  height: auto;
  object-fit: contain;
}
.beacon-section .feature-card .feature-title {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.4;
  text-align: left;
  margin: 0;
  width: 100%;
}
.cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.cta-section .cta-content {
  /* display: flex; */
  /* flex-direction: row; */
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-section .section-title {
  flex: 0 0 auto;
  min-width: 0;
  font-size: 40px;
  /* font-weight: 500; */
  color: #333333;
  text-align: left;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  line-height: 1.2;
    font-family: 'AlibabaPuHuiTi_2_65_Medium';
}
.cta-content-inner {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 30px;
}
.cta-section .cta-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
  width: 100%;
}
.cta-section .cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}
.cta-section .cta-separator {
  color: #888888;
  font-size: 16px;
  font-weight: 300;
  margin: 0 8px;
  flex-shrink: 0;
}
.cta-section .btn-primary {
  background-color: #E63946;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-section .btn-primary:hover {
  background-color: #C1121F;
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
}
.cta-section .btn-secondary {
  background-color: white;
  color: #4F5D75;
  border: 2px solid #4F5D75;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-section .btn-secondary:hover {
  border-color: #4F5D75;
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
}
/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
  .container {
    /* max-width: 1400px; */
  }
  .hero-section .hero-content {
    height: 580px;
  }
  .hero-section .hero-title {
    font-size: 54px;
    line-height: 74px;
  }
}

/* Desktop (1200px - 1440px) */
@media (max-width: 1440px) and (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
}

/* Medium Desktop (1024px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
  .hero-section .hero-content {
    height: 500px;
  }
  .hero-section .hero-title {
    font-size: 48px;
    line-height: 66px;
    max-width: 460px;
  }
  .hero-section .hero-text {
    max-width: 650px;
    padding-left: 0;
  }
  .featured-degrees-section .university-info {
    max-width: 55%;
  }
  .degrees-section .degrees-cards {
    gap: 32px;
  }
  .beacon-section .feature-cards {
    gap: 20px;
  }
  .beacon-section .feature-card {
    padding: 10px 10px 24px;
  }
  .beacon-section .feature-card .feature-icon img {
    /* max-width: 200px; */
  }
  .beacon-section .feature-card .feature-title {
    font-size: 15px;
  }
  .cta-section .cta-content {
    flex-direction: row;
    gap: 55px;
  }
  .cta-section .section-title {
    font-size: 38px;
  }
  .cta-section .cta-description {
    font-size: 15.5px;
  }
  .cta-content-inner {
    gap: 22px;
  }
  .cta-section .cta-buttons {
    gap: 14px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 15px 36px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .hero-section .hero-title {
    font-size: 44px;
    line-height: 60px;
    max-width: 100%;
    color: #333333;
  }
  .hero-section .hero-content {
    /* height: 480px; */
    min-height: 530px;
  }
  .hero-section .hero-text {
    padding: 30px 20px 30px 0;
    max-width: 650px;
  }
  .hero-section .feature-item .feature-text {
    font-size: 16px;
    color: #333;
    font-family: 'AlibabaPuHuiTi_2_55_Regular';
  }
  .hero-section .feature-item.active .feature-text {
    color: #333;
  }
  .hero-section .feature-item.active::before {
    left: -28px;
  }
  /* 小屏（<=1024）：模块间距 60px，仅作用于相邻模块 */
  .hero-section + .featured-degrees-carousel,
  .featured-degrees-carousel + .degrees-section,
  .degrees-section + .beacon-section {
    margin-top: 60px;
  }
  /* 小屏：轮播区域最小高度 520px */
  .featured-degrees-carousel,
  .featured-degrees-carousel-inner,
  .featured-degree-slide {
    min-height: 520px;
  }
  .featured-degrees-section {
    padding: 50px 0 100px;
  }
  .featured-degrees-section .section-title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .featured-degrees-section .university-info {
    max-width: 60%;
  }
  .featured-degrees-section .university-info .university-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #43537D;
  }
  .featured-degrees-section .university-info .university-description {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
    color: #43537D;
  }
  .featured-degrees-section .btn-consultation {
    padding: 15px 36px;
    font-size: 16px;
  }
  .degrees-section .degrees-cards {
    gap: 24px;
  }
  .degrees-section .degree-card {
    height: 360px;
    width: 100%;
  }
  .beacon-section .section-title,
  .cta-section .section-title {
    font-size: 38px;
  }
  .cta-section .cta-content {
    gap: 50px;
  }
  .cta-content-inner {
    gap: 22px;
  }
  .cta-section .cta-description {
    font-size: 15.5px;
  }
  .cta-section .cta-buttons {
    gap: 14px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 15px 36px;
    font-size: 15px;
  }
  .beacon-section .beacon-content {
    display: block;
  }
  .beacon-section .beacon-text-section {
    width: 100%;
  }
  .beacon-section .feature-cards {
    margin-top: -80px;
  }
  .beacon-section .section-title {
    font-size: 40px;
  }
  .beacon-section .beacon-description {
    font-size: 15px;
  }
  .beacon-section .feature-cards {
    gap: 18px;
  }
  .beacon-section .feature-card {
    padding: 10px;
  }
  .beacon-section .feature-card .feature-icon img {
    /* max-width: 180px; */
  }
  .beacon-section .feature-card .feature-title {
    font-size: 15px;
    line-height: 1.3;
  }
}
/* Tablet Landscape (900px - 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
  .beacon-section .feature-cards {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
  .beacon-section .feature-card {
    /* flex: 0 0 calc(50% - 8px); */
    box-sizing: border-box;
    max-width: none;
    min-height: 140px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .beacon-section .feature-card .feature-icon {
    margin-bottom: 10px;
    flex-shrink: 0;
    width: 100%;
  }
  .beacon-section .feature-card .feature-icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .beacon-section .feature-card .feature-title {
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-section .cta-content {
    flex-direction: row;
    gap: 45px;
  }
  .cta-section .section-title {
    font-size: 36px;
    margin-bottom: 0;
  }
  .cta-content-inner {
    gap: 20px;
  }
  .cta-section .cta-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .cta-section .cta-buttons {
    gap: 12px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 14px 30px;
    font-size: 15px;
  }

  .featured-degrees-section .section-title {
    font-size: 36px;
    margin-bottom: 32px;
    padding-top: 40px;
  }
}

/* Tablet Portrait (768px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
  .beacon-section {
    background-image: none !important;
    background-position: initial !important;
    background-size: initial !important;
  }
  .beacon-section::before {
    display: none;
  }
  .beacon-section .beacon-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .beacon-section .beacon-text-section {
    width: 100%;
    order: 1;
  }
  .beacon-section .beacon-image-section {
    display: block;
    width: 100%;
    order: 2;
  }
  .beacon-section .feature-cards {
    order: 3;
  }
  .beacon-section .beacon-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
  .beacon-section .beacon-image-desktop {
    display: none;
  }
  .beacon-section .beacon-image-mobile {
    display: block;
  }
  .beacon-section .feature-card .feature-icon-img-desktop {
    display: none;
  }
  .beacon-section .feature-card .feature-icon-img-mobile {
    display: block;
  }
  .beacon-section .feature-cards {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
  .beacon-section .feature-card {
    /* flex: 0 0 calc(50% - 8px); */
    box-sizing: border-box;
    max-width: none;
    min-height: auto;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .beacon-section .feature-card .feature-icon {
    margin-bottom: 12px;
    flex-shrink: 0;
    width: 100%;
  }
  .beacon-section .feature-card .feature-icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .beacon-section .feature-card .feature-title {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    word-break: break-word;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .featured-degrees-section {
    padding: 55px 0 80px;
  }
  .featured-degrees-section .section-title {
    font-size: 34px;
    margin-bottom: 36px;
    margin-top: 80px;
  }
  .featured-degrees-section .university-info {
    max-width: 85%;
  }
  .featured-degrees-section .university-info .university-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .featured-degrees-section .university-info .university-description {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 30px;
  }
  .featured-degrees-section .btn-consultation {
    padding: 14px 34px;
    font-size: 15px;
  }
  .cta-section .cta-content {
    flex-direction: row;
    gap: 40px;
  }
  .cta-section .section-title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 0;
  }
  .cta-content-inner {
    gap: 20px;
    flex-direction: column;
  }
  .cta-section .cta-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .cta-section .cta-buttons {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    flex: 0 1 auto;
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 32px;
  }
  .hero-section {
    padding: 30px 0 0;
  }
  /* 移动端 hero：宽度 100%，无 padding，无圆角 */
  .hero-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .hero-section .hero-content {
    width: 100%;
    height: auto;
    min-height: 600px;
    padding: 0;
    border-radius: 0;
  }
  .hero-section .hero-carousel {
    border-radius: 0;
  }
  .hero-section .hero-carousel-img {
    display: none;
  }
  .hero-section .hero-carousel-img-mobile {
    display: block;
  }
  .hero-section .hero-text {
    width: 100%;
    /* padding: 20px; */
    /* padding-left: 20px; */
    margin: 0 auto;
  }
  .hero-section .hero-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 40px;
    width: 100%;
    color: #FFFFFF;
    font-weight: 600;
    padding: 80px 18px 0;
  }
  .hero-section .hero-features {
    padding-left: 16px;
    /* margin: 0 29px; */
    list-style: none;
  }
  .hero-section .feature-item {
    margin-bottom: 16px;
    padding-left: 0;
    position: relative;
    display: block;
  }
  .hero-section .feature-item:last-child {
    margin-bottom: 0;
  }
  .hero-section .feature-item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 2px;
    width: 3px;
    height: 0;
    background: #EC0000;
    transition: height 0s;
  }
  .hero-section .feature-item.active::before {
    height: calc(100% - 4px);
    transition: height 2s ease;
  }
  .hero-section .feature-item .feature-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    display: inline;
    font-family: 'AlibabaPuHuiTi_2_55_Regular';
  }
  .hero-section .feature-item.active .feature-text {
    color: #FFFFFF;
    font-weight: 500;
  }
  /* 移动端：模块间距 40px，仅作用于相邻模块 */
  .hero-section + .featured-degrees-carousel,
  .featured-degrees-carousel + .degrees-section,
  .degrees-section + .beacon-section {
    margin-top: -1px;
  }
  /* 移动端：轮播区域容器保持 520px，高度自适应 slide 内容 */
  .featured-degrees-carousel,
  .featured-degrees-carousel-inner {
    min-height: 460px;
  }
  .featured-degree-slide {
    min-height: auto;
    display: none;
  }
  .featured-degree-slide.active {
    display: block;
  }
  .featured-degrees-section {
    padding: 0;
    min-height: 600px;
    background-image: url('../../../enImages/index/2-1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
  }
  #programs1.featured-degrees-section {
    background-image: url('../../../enImages/index/11-1.png');
    background-size: cover;
    background-position: center top;
  }
  .featured-degrees-section .container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .featured-degrees-section .section-title {
    font-size: 32px;
    margin-bottom: 80px;
    text-align: left;
    width: 100%;
    display: block;
    font-weight: 600;
    line-height: 25px;
    padding: 40px 20px 0;
    /* color: #FFFFFF; */
    z-index: 2;
    position: relative;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
    margin-top: 100px;
    font-family: 'AlibabaPuHuiTi_2_65_Medium';
  }
  .featured-degrees-section .section-title .title-line {
    display: block;
  }
  #programs1.featured-degrees-section .section-title {
    color: #fff;
  }
  .featured-degrees-section .university-info-wrapper {
    display: block;
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 20px 40px;
  }
  .featured-degrees-section .university-info {
    max-width: 100%;
    order: 1;
    margin-top: 20px;
    /* background: rgba(255, 255, 255, 0.95); */
    /* padding: 24px; */
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  }
  #programs1.featured-degrees-section .university-info {
    /* background: rgba(0, 0, 0, 0.7); */
  }
  .featured-degrees-section .university-info .university-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #1E5AA8;
    font-weight: 600;
  }
  #programs1.featured-degrees-section .university-info .university-title {
    color: #43537D;
  }
  .featured-degrees-section .university-info .university-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #43537D;
  }
  #programs1.featured-degrees-section .university-info .university-description {
    color: #43537D;
  }
  .featured-degrees-section .btn-consultation-desktop {
    display: none;
  }
  .featured-degrees-section .university-image-section {
    display: none;
  }
  .featured-degrees-section .university-image-desktop {
    display: none;
  }
  .featured-degrees-section .university-image-mobile-bg {
    display: none;
  }
  .featured-degrees-section .btn-consultation-mobile {
    display: none;
  }
  .degrees-section {
    padding: 0px;
  }
  .degrees-section .degrees-cards-wrapper {
    padding-top: 40px;
  }
  .degrees-section .degrees-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: -40px;
  }
  .degrees-section .degree-card {
    height: 300px;
    width: 100%;
  }
  .degrees-section .degree-card .degree-card-bg-desktop {
    display: none;
  }
  .degrees-section .degree-card .degree-card-bg-mobile {
    display: block;
  }
  .degrees-section .degree-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
  .degrees-section .degree-card .degree-card-content {
    padding: 0px 17px;
    bottom: 15px;
  }
  .degrees-section .degree-card.degree-card-active .degree-card-content {
    padding-left: 40px;
  }
  .degrees-section .degree-card .degree-card-content-hover {
    height: 100%;
    padding-top: 48px;
    padding-left: 17px;
    padding-right: 17px;
    padding-bottom: 19px;
    bottom: 0;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-separator {
    width: 35px;
    height: 2px;
    margin: 10px 0 12px 0;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-card-btn {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
    bottom: auto;
    left: auto;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-card-btn svg {
    width: 14px;
    height: 14px;
  }
  .degrees-section .degree-card .degree-title {
    font-size: 28px;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-title {
    font-size: 26px;
  }
  .degrees-section .degree-card .degree-subtitle {
    font-size: 16px;
  }
  .degrees-section .degree-card .degree-description {
    font-size: 15px;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-description {
    font-size: 14px;
  }
  .degrees-section .degree-card .info-icon {
    bottom: 28px;
    right: 28px;
  }
  .beacon-section {
    padding: 20px 0;
    background-image: none !important;
    background-position: initial !important;
    background-size: initial !important;
  }
  .beacon-section::before {
    display: none;
  }
  .beacon-section {
    padding: 40px 0;
    background-image: url('../../../enImages/index/3-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .beacon-section .beacon-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .beacon-section .beacon-text-section {
    width: 100%;
    order: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 20px;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  }
  .beacon-section .section-title {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: left;
    color: #333;
  }
  .beacon-section .beacon-description {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 100%;
    color: #333;
  }
  .beacon-section .beacon-image-section {
    display: block;
    order: 2;
  }
  .beacon-section .feature-cards {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .beacon-section .feature-card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .beacon-section .feature-card .feature-icon {
    margin-bottom: 12px;
    flex-shrink: 0;
    width: 100%;
  }
  .beacon-section .feature-card .feature-icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .beacon-section .feature-card .feature-title {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    word-break: break-word;
    margin: 0;
    color: #333;
    font-weight: 500;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    text-align: left;
  }
  .cta-section .section-title {
    font-size: 32px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
  }
  .cta-content-inner {
    gap: 18px;
    width: 100%;

    flex-direction: column;
  }
  .cta-section .cta-description {
    font-size: 15px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.65;
  }
  .cta-section .cta-buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .cta-section .cta-separator {
    display: inline;
    font-size: 14px;
    margin: 0 4px;
    flex-shrink: 0;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    flex: 1 1 0;
    min-width: 140px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0 0px;
  }
  .hero-section .hero-content {
    min-height: 600px;
    padding: 20px 0;
  }
  .featured-degrees-carousel-inner {
    background: linear-gradient(to bottom, #DEF1FF, #ffffff);
  }

  .featured-degrees-section .section-title {
    margin-top: 80px;
  }
  .hero-section .hero-text {
    max-width: 650px;
    padding: 20px;
  }
  .hero-section .hero-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 40px;
    color: #FFFFFF;
    /* margin-left: 48px; */
    padding: 44px 28px 0;
  }
  .hero-section .hero-features {
    padding: 0 28px;
  }
  .hero-section .feature-item {
    margin-bottom: 6px;
    padding-left: 0;
  }
  .hero-section .feature-item.active::before {
    left: -20px;
    width: 3px;
  }
  .hero-section .feature-item .feature-text {
    font-size: 1.1rem;
    line-height: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 12px;
    font-family: 'AlibabaPuHuiTi_2_55_Regular';
  }
  .hero-section .feature-item.active .feature-text {
    color: #FFFFFF;
    font-family: 'AlibabaPuHuiTi_2_65_Medium';
  }
  .featured-degrees-section {
    padding: 30px 0 40px;
    background-image: url('../../../enImages/index/2-1.png');
    background-size: contain;
    /* background-position: center top; */
    /* background-repeat: no-repeat; */
  }
  #programs1.featured-degrees-section {
    background-image: url('../../../enImages/index/11-1.png');
    background-size: contain !important;
    /* background-position: center top; */
  }
  .featured-degrees-section .section-title {
    font-size: 32px;
    margin-bottom: 80px;
    text-align: left;
    width: 80%;
    display: block;
    font-weight: 600;
    line-height: 40px;
    padding: 0px 29px 0;
  }
  .featured-degrees-section .university-info-wrapper {
    display: block;
    padding: 0 16px 40px;
  }
  .featured-degrees-section .university-info {
    max-width: 100%;
    order: 1;
    margin-top: 0;
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 16px 10px 16px 16px;
    border-radius: 8px;
  }
  #programs1.featured-degrees-section .university-info {
    /* background: rgba(0, 0, 0, 0.7); */
  }
  .featured-degrees-section .university-info .university-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #43537D;
    font-weight: 500;
    font-family: 'AlibabaPuHuiTi_2_65_Medium';
  }
  #programs1.featured-degrees-section .university-info .university-title {
    color: #fff;
  }
  .featured-degrees-section .university-info .university-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #43537D;
    width: 100%;
  }
  #programs1.featured-degrees-section .university-info .university-description {
    color: #43537D;
  }
  .featured-degrees-section .btn-consultation-desktop {
    display: none;
  }
  .featured-degrees-section .university-image-section {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    display: none;
  }
  .featured-degrees-section .university-image-desktop {
    display: none;
  }
  .featured-degrees-section .university-image-mobile-bg {
    display: none;
  }
  .featured-degrees-section .btn-consultation-mobile {
    display: none;
  }
  .degrees-section {
    padding: 0 0 30px;
  }
  .degrees-section .degrees-cards {
    gap: 20px;
    margin-top: -30px;
  }
  .degrees-section .degree-card {
    height: 180px;
    width: 100%;
  }
  .degrees-section .degree-card .degree-card-bg-desktop {
    display: none;
  }
  .degrees-section .degree-card .degree-card-bg-mobile {
    display: block;
  }
  .degrees-section .degree-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
  .degrees-section .degree-card .degree-card-content {
    bottom: 15px;
  }
  .degrees-section .degree-card .degree-card-content-hover {
    height: 100%;
    padding-top: 12px;
    padding-left: 17px;
    padding-right: 12px;
    padding-bottom: 19px;
    bottom: 0;
  }
  .degrees-section .degree-card .degree-title {
    font-size: 40px;
  }
  .degrees-section .degree-card .degree-subtitle {
    font-size: 14px;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-title {
    font-size: 22px;
    width: 80%;
  }
  .degrees-section .degree-card .degree-card-content-hover .degree-description {
    font-size: 13px;
    line-height: 22px;
  }

  .degrees-section .degree-card .degree-card-content-hover .degree-card-btn {
    top: 28px;
    right: 17px;
  }
  .beacon-section {
    padding: 20px 0;
    background-image: none !important;
    background-position: initial !important;
    background-size: initial !important;
  }
  .beacon-section::before {
    display: none;
  }
  .beacon-section .beacon-content {
    display: flex;
    flex-direction: column;
    /* gap: 32px; */
  }
  .beacon-section .beacon-text-section {
    width: 90%;
    order: 1;
    margin: 0 auto;
  }
  .beacon-section .beacon-image-section {
    display: block;
    width: 100%;
    order: 2;
  }
  .beacon-section .feature-cards {
    order: 3;
    padding: 0 24px;
  }
  .beacon-section .beacon-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
  .beacon-section .beacon-image-desktop {
    display: none;
  }
  .beacon-section .beacon-image-mobile {
    display: block;
  }
  .beacon-section .feature-card .feature-icon-img-desktop {
    display: none;
  }
  .beacon-section .feature-card .feature-icon-img-mobile {
    display: block;
  }
  .beacon-section .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
  }
  .beacon-section .beacon-description {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.65;
    max-width: 100%;
    /* font-family: 'AlibabaPuHuiTi_2_55_Regular'; */
  }
  .beacon-section .feature-cards {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .beacon-section .feature-card {
    flex: 0 0 calc(50% - 6px);
    box-sizing: border-box;
    max-width: none;
    min-height: auto;
    padding: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .beacon-section .feature-card .feature-icon {
    margin-bottom: 8px;
    flex-shrink: 0;
    width: 100%;
  }
  .beacon-section .feature-card .feature-icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .beacon-section .feature-card .feature-title {
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
    word-break: break-word;
    margin-top: auto;
    font-weight: 300;
    font-family: 'AlibabaPuHuiTi_2_55_Regular';
  }
  .cta-section {
    padding: 50px 20px;
  }
  .cta-section .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-section .section-title {
    font-size: 28px;
    margin-bottom: 0;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
  }
  .cta-content-inner {
    gap: 16px;
    width: 100%;
  }
  .cta-section .cta-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-section .cta-separator {
    display: none;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    text-align: center;
  }

  .featured-degrees-carousel,
  .featured-degrees-carousel-inner {
    min-height: 500px;
  }

  /* 480px 以下将 12px、13px、14px 字体设置为 1.1rem */
  .featured-degrees-section .university-info .university-description,
  .degrees-section .degree-card .degree-subtitle,
  .degrees-section .degree-card .degree-card-content-hover .degree-description,
  .beacon-section .beacon-description,
  .beacon-section .feature-card .feature-title,
  .cta-section .cta-description,
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    font-size: 1.1rem !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section,
.featured-degrees-section,
.beacon-section,
.cta-section {
  animation: fadeIn 0.6s ease-out;
}
.feature-card,
.degree-card {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.animate-in,
.degree-card.animate-in {
  opacity: 1;
  animation: slideInUp 0.6s ease-out;
}
