/* Hero section  */
.hero {
 background: #0b1e37;
 padding: 100px 0px 35px;
}

.hero-container {
 width: min(1200px, 92%);
 margin: 0 auto;
 text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(192, 163, 77, 0.35);
  border-radius: 999px;
  color: #c0a34d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c0a34d;
  box-shadow: 0 0 0 6px rgba(192, 163, 77, 0.08);
}

.hero-title {
  margin: 0;
  /* max-width: 1100px; */
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.title-white {
  color: #ffffff;
  display: inline;
}

.title-gold {
  color: #c0a34d;
  display: inline;
}

.hero-text {
 color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
    width: 70%;
    margin: 5px auto;
}

.hero-buttons {
  display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    justify-content: center;
}

/* staged reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.title-kingsford {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-kingsford.show {
  opacity: 1;
  transform: translateY(0);
}

.title-gateway {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transform: translateY(26px);
}

.title-gateway.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons a{
  text-decoration: none;
}

.scroll-bottom {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-bottom a {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: 100;
  font-family: 'Glacial Indifference';
  display: inline-block;
}

.scroll-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-bottom.bounce a,
.scroll-bottom.bounce {
  animation: floatArrow 1.8s ease-in-out infinite;
}

@keyframes floatArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-text {
    font-size: 20px;
     width: 80%;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.65;
     width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    text-align: center;
        align-items: center;
  }

  .hero-badge {
    gap: 5px;
    padding: 10px;
    font-size: 12px;
    letter-spacing: normal;
}
}


/* ---------- programme logo  Section ---------- */

.programme-logo {
  padding: 25px 0px 0px 0px;
}

.oxford-header-icon {
  display: flex;
  justify-content: center;
}

.oxford-header-icon img {
  max-width: 223px;
  width: 111%;
  height: auto;
}


/* ---------- why study Section ---------- */
.ai-study-section {
  background: #ffffff;
    padding: 50px 0px;
}

.ai-study-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.ai-study-title {
  font-family: Georgia, "Times New Roman", serif;
}

.ai-study-box {
  display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    background: #f8f8f6;
    border: 1px solid rgba(11, 30, 55, 0.08);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(11, 30, 55, 0.06);
    margin-top: 30px;
}

.ai-study-left {
  padding-right: 10px;
}

.ai-study-intro {
  margin: 0 0 24px;
  color: rgba(11, 30, 55, 0.75);
  font-size: 16px;
  line-height: 1.7;
}

.ai-study-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.ai-study-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 30, 55, 0.08);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ai-study-item:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 163, 77, 0.5);
  box-shadow: 0 10px 24px rgba(192, 163, 77, 0.08);
}

.ai-study-item.active {
  border-color: #c0a34d;
  background: rgba(192, 163, 77, 0.08);
  box-shadow: 0 12px 28px rgba(192, 163, 77, 0.1);
}

.ai-study-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c0a34d;
  margin-top: 7px;
  flex: 0 0 10px;
}

.ai-study-item-title {
  color: #0b1e37;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.ai-study-right {
  background: #ffffff;
  border: 1px solid rgba(11, 30, 55, 0.08);
  border-radius: 20px;
  padding: 10px;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  overflow: hidden;
}

.ai-study-content {
  display: none;
  animation: fadeSlideUp 0.35s ease;
  max-width: 460px;
  margin: auto;
}

.ai-study-content.active {
  display: block;
}
.ai-study-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.ai-study-icon img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  object-fit: contain;
}

.ai-study-content h3 {
  margin: 0 0 14px;
  color: #0b1e37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.ai-study-content p {
  margin: 0;
  color: rgba(11, 30, 55, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.ai-study-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.ai-study-buttons a{
  text-decoration: none;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .ai-study-box {
    grid-template-columns: 1fr;
  }

  .ai-study-content h3 {
    font-size: 26px;
  }

  .ai-study-content p,
  .ai-study-intro {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .ai-study-box {
    padding: 20px;
    gap: 20px;
  }

  .ai-study-item {
    padding: 5px;
    padding-left: 10px;
  }

  .ai-study-item-title {
    font-size: 14px;
  }

 
  .ai-study-content h3 {
    font-size: 15px;
  }

  .ai-study-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ai-study-content {
    padding: 0px;
}

  .ai-study-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* ---------- Career Track ---------- */
/* ---------- Career Track ---------- */
.career-pathways-section {
  padding: 50px 0;
  background: #ffffff;
}

.career-pathways-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.career-pathways-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  color: rgba(11, 30, 55, 0.75);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.career-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.career-item {
  border: 1px solid rgba(11, 30, 55, 0.1);
  border-radius: 100px;
  background: #ffffff;
  overflow: hidden;
  transition: border-radius 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.career-item:hover {
  transform: translateY(-3px);
  border-color: rgba(192, 163, 77, 0.45);
  box-shadow: 0 14px 30px rgba(11, 30, 55, 0.08);
}

.career-item.active {
  border-radius: 15px;
  border-color: rgba(192, 163, 77, 0.55);
  box-shadow: 0 18px 42px rgba(192, 163, 77, 0.12);
}

.career-toggle {
  width: 100%;
  border: 0;
  background: #0b1e37;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  transition: background 0.35s ease, padding 0.35s ease;
}

.career-item:hover .career-toggle {
  background: #102b4d;
}

.career-item.active .career-toggle {
  background: #0b1e37;
}

.career-icon {
  color: #c0a34d;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.35s ease;
  flex: 0 0 auto;
}

.career-item.active .career-icon {
  transform: rotate(180deg);
}

.career-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.45s ease;
}

.career-content-inner {
  padding: 18px 24px 24px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.career-item.active .career-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.career-content-inner h3 {
  margin: 0 0 16px;
  color: #0b1e37;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.career-content-inner ul {
  margin: 0;
  padding-left: 22px;
}

.career-content-inner li {
  margin-bottom: 14px;
  color: rgba(11, 30, 55, 0.8);
  font-size: 17px;
  line-height: 1.7;
}

.career-content-inner li:last-child {
  margin-bottom: 0;
}

.career-content-inner strong {
  color: #0b1e37;
  font-size: 17px;
}

@media (max-width: 767px) {
  .career-pathways-section {
    padding: 40px 0;
  }

  .career-pathways-intro {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .career-item {
    border-radius: 28px;    
  }

  .career-item.active {
    border-radius: 15px;
  }

  .career-toggle {
    padding: 16px 18px;
    font-size: 16px;
  }

  .career-content-inner {
    padding: 16px 18px 20px;
  }

  .career-content-inner h3 {
    font-size: 20px;
  }

  .career-content-inner li,
  .career-content-inner strong {
    font-size: 15px;
  }
}


/* ---------- The Kingsford USP ---------- */
.distinction-section {
  background: #c0a34d;
  padding: 50px 0;
  overflow: hidden;
}

.distinction-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.distinction-title {
  color: #fff;
}

.distinction-slider {
  position: relative;
  padding: 0 60px;
  margin-top: 30px;
}

.distinction-slider .slick-slide {
  padding: 10px 14px;
  box-sizing: border-box;
}

.distinction-slider .slick-list {
  margin: 0 -14px;
}

.distinction-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 30px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  /* box-shadow: 0 18px 40px rgba(11, 30, 55, 0.12); */
  border: 1px solid rgba(11, 30, 55, 0.08);
  width: 70%;
    margin: 0 auto;
   
}

  /* card icon */
.distinction-icon {
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.distinction-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}


.distinction-card-title {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: #0b1e37;
}

.distinction-card-text {
  margin: 0;
  color: rgba(11, 30, 55, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

/* arrows container */
/* slider arrows */
.distinction-slider .custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b1e37;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
}

.distinction-slider .custom-arrow:hover {
  background: #0b1e37;
  color: #ffffff;
}

.distinction-slider .slick-prev {
  left: 0;
}

.distinction-slider .slick-next {
  right: 0;
}

/* remove default slick arrows */
.distinction-slider .slick-prev:before,
.distinction-slider .slick-next:before {
  display: none;
}

@media (max-width: 991px) {
  .distinction-slider {
    padding: 0 40px;
  }

  .distinction-card {
    padding: 30px 24px;
  }

  .distinction-card-title {
    font-size: 26px;
  }

  .distinction-card-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .distinction-slider {
    padding: 0 10px;
  }

  .distinction-slider .slick-prev,
  .distinction-slider .slick-next {
    display: none !important;
  }

  .distinction-card {
    min-height: auto;
    padding: 26px 20px;
    border-radius: 20px;
  }


  .distinction-card-title {
    font-size: 22px;
  }

  .distinction-card-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ---------- Syllabus ---------- */
.curriculum-section {
  padding: 50px 0px;
  background: rgb(246, 245, 242);
}

.curriculum-container {
  width: min(900px, 92%);
  margin: 0 auto;
}

.curriculum-intro {
  margin: 0 0 24px;
  color: rgba(11, 30, 55, 0.75);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.curriculum-accordion {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.curriculum-item {
  border: 1px solid rgba(11, 30, 55, 0.12);
  border-radius: 100px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.curriculum-item.active {
  border-radius: 15px;
  border-color: rgba(192, 163, 77, 0.5);
  box-shadow: 0 12px 30px rgba(192, 163, 77, 0.1);
}

.curriculum-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: #0b1e37;
  font-size: 18px;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.curriculum-icon {
  color: #c0a34d;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.curriculum-item.active .curriculum-icon {
  transform: rotate(180deg);
}

.curriculum-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.curriculum-content-inner {
  padding: 0 24px 22px;
}

.curriculum-content-inner p {
  margin: 0;
  color: rgba(11, 30, 55, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.curriculum-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.curriculum-cta a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .curriculum-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .curriculum-cta a {
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    text-align: center;
  }

  .curriculum-toggle {
    padding: 16px 18px;
    font-size: 16px;
  }

  .curriculum-intro {
    font-size: 16px;
  }

  .curriculum-content-inner {
    padding: 0 18px 18px;
  }

  .curriculum-content-inner p {
    font-size: 16px;
    line-height: 1.7;
  }

  .curriculum-btn {
    width: 100%;
  }
}

.curriculum-points {
  margin: 12px 0 0;
  padding-left: 20px;
  color: rgba(11, 30, 55, 0.76);
}

.curriculum-points li {
  margin-bottom: 8px;
  color: rgba(11, 30, 55, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.curriculum-subtitle {
  margin-top: 16px;
  font-weight: 600;
  color: #0b1e37;
}

@media (max-width: 767px) {
  .curriculum-points li {
    font-size: 15px;
  }
}


/* ------ Logos section --------------------*/
.accreditation-strip {
  padding: 36px 0;
  overflow: hidden;
  width: min(1200px, 92%);
  margin: 0 auto;
}

.accreditation-strip__inner {
  /* width: 100%;
  margin: 0 auto; */
}

.accreditation-strip__title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #0b1e37;
}

.accreditation-marquee {
  overflow: hidden;
  width: 100%;
}

.accreditation-marquee__track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: accreditation-scroll 24s linear infinite;
}

.accreditation-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditation-logo img {
  display: block;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.accreditation-marquee:hover .accreditation-marquee__track {
  animation-play-state: paused;
}

@keyframes accreditation-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .accreditation-strip {
    padding: 28px 0;
  }

  .accreditation-strip__title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .accreditation-marquee__track {
    gap: 48px;
    animation-duration: 20s;
  }

  .accreditation-logo img {
    max-height: 70px;
  }
}

@media (max-width: 576px) {
  .accreditation-strip__title {
    font-size: 22px;
  }

  .accreditation-marquee::before,
  .accreditation-marquee::after {
    width: 40px;
  }

  .accreditation-marquee__track {
    gap: 34px;
    animation-duration: 16s;
  }

  .accreditation-logo img {
    max-height: 52px;
  }
}


/* ---------- More Local USPs ---------- */
.synthesis-section {
  padding: 50px 0px;
  background: #ffffff;
}

.synthesis-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.synthesis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 30px;
}

.synthesis-card {
  background: #ffffff;
  border: 1px solid rgba(11, 30, 55, 0.1);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 14px 32px rgba(11, 30, 55, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.synthesis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 30, 55, 0.1);
  border-color: rgba(192, 163, 77, 0.45);
}

.synthesis-card-title {
  margin: 0 0 14px;
  color: #0b1e37;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.synthesis-card-text {
  margin: 0;
  color: rgba(11, 30, 55, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .synthesis-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .synthesis-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .synthesis-card-title {
    font-size: 22px;
  }

  .synthesis-card-text {
    font-size: 16px;
    line-height: 1.7;
  }
}





/*The Kingsford USP ----------------------------------------------------- */

.program-advantage {
  position: relative;
  background: #f6f5f2;
  padding: 50px 0;
}

.program-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.program-advantage-header {
  text-align: center;
}

.program-advantage-grid {
  margin-top: 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.advantage-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: #fff;
  color: #0b1e37;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.advantage-card:hover {
  background: #0b1e37;
  color: #fff;
}

.advantage-card-title {
  margin: 4px 0 6px;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", serif;
}

.advantage-card-text {
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", serif;
}

.program-advantage-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.program-advantage-actions a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .program-advantage-grid {
    flex-direction: column;
  }

  .advantage-card {
    max-width: 100%;
    flex: 1 1 auto;
    padding: 22px;
  }

  .advantage-card-title {
    font-size: 18px;
  }

  .program-advantage-actions a {
    width: 100%;
  }
}


/* Program Logistics Section */

.logistics-section {
  padding: 50px 0;
  background: #fff;
}

.logistics-container {
  width: min(1200px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.5fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.logistics-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  color: #0b1e37;
  margin-bottom: 30px;
}

.logistics-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 18px;
}

.logistics-list li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11,30,55,0.75);
  position: relative;
  padding-left: 26px;
}

.logistics-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #c0a34d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.faq {
  background: transparent;
}

.faq-title {
    margin-bottom: 20px;
    text-align: left;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 400;
    color: #0b1e37;
}

.section-divider {
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: #c0a34d;
  margin: 0 auto 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 30, 55, 0.12);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(192, 163, 77, 0.55);
  box-shadow: 0 10px 24px rgba(192, 163, 77, 0.08);
}

.faq-item-toggle {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-item-toggle:hover {
  background: #fff;
}

.faq-item-question {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 18px;
  color: #0b1e37;
  line-height: 1.35;
}

.faq-item-icon {
  color: #c0a34d;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.faq-item.is-open .faq-item-icon {
  transform: rotate(180deg);
}

.faq-item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  color: rgba(11, 30, 55, 0.72);
  font-size: 16px;
  line-height: 1.75;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item-content p {
  margin: 0;
}

.faq-item.is-open .faq-item-content {
  opacity: 1;
  padding: 0 22px 22px;
}

.faq-item-divider {
  width: 100%;
  height: 1px;
  background: rgba(11, 30, 55, 0.1);
  margin: 0 0 14px;
}

@media (max-width: 991px) {
  
  .logistics-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logistics-title {
    font-size: 30px;
    text-align: center;
  }

  .faq-title {
    text-align: center;
}
}

@media (max-width: 767px) {
.logistics-section {
  padding: 20px 0 50px;
  background: #fff;
}

  .faq-item-question {
    font-size: 16px;
  }

  .faq-item-content {
    padding: 0 16px;
    font-size: 15px;
  }

  .faq-item.is-open .faq-item-content {
    padding: 0 16px 18px;
  }

   .logistics-title {
    font-size: 28px;
  }
}



/* Mobile Section Padding */
@media (max-width: 767px) {
  .ai-study-section,
  .career-pathways-section,
  .distinction-section,
  .program-advantage,
  .curriculum-section,
  .accreditation-strip,
  .synthesis-section,
  .logistics-section,
  .final-cta {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}