:root {
  --primary-color: #5a3e85;
  --accent-color: #f3c677;
  --text-color: #333333;
  --bg-light: #fafafa;
  --header-height: 60px;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background: var(--bg-light);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}

.vt-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.vt-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.vt-header .vt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vt-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
}

.vt-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.vt-menu-toggle:hover {
  transform: scale(1.1);
}

.vt-nav > ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.vt-nav > ul.vt-open {
  opacity: 1;
}

.vt-nav > ul:not(.vt-open) {
  opacity: 1;
}

.vt-nav > ul > li {
  position: relative;
}

.vt-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.vt-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--accent-color);
  transition: width 0.3s;
}

.vt-nav a:hover {
  color: var(--primary-color);
}

.vt-nav a:hover::after {
  width: 100%;
}

.vt-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  list-style: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vt-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  transition: background 0.3s;
}

.vt-dropdown li a:hover {
  background: rgba(243, 198, 119, 0.2);
}

.vt-has-dropdown:hover .vt-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vt-hero {
  position: relative;
  background: url("../assets/images/hero.jpeg") center/cover no-repeat;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  animation: overlayFade 1s forwards;
}

@keyframes overlayFade {
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}

.vt-hero__content {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: contentFadeUp 1s 0.5s ease forwards;
}

@keyframes contentFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vt-hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vt-hero__content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.vt-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.vt-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

section.vt-about,
section.vt-services,
section.vt-promo,
section.vt-contact {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: sectionFadeIn 0.8s ease forwards;
}

section.vt-about {
  animation-delay: 0.3s;
}
section.vt-services {
  animation-delay: 0.5s;
}
section.vt-promo {
  animation-delay: 0.7s;
}
section.vt-contact {
  animation-delay: 0.9s;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.vt-about h2,
section.vt-services h2,
section.vt-promo h2,
section.vt-contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

section.vt-about h2::after,
section.vt-services h2::after,
section.vt-promo h2::after,
section.vt-contact h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.vt-about p {
  margin-bottom: 1rem;
}

.vt-about ul {
  list-style: none;
  padding-left: 1rem;
}

.vt-about li {
  margin-bottom: 0.5rem;
  position: relative;
}

.vt-services .vt-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.vt-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vt-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.vt-promo p {
  font-size: 1.1rem;
  font-weight: 500;
}

.vt-contact p a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.vt-contact p a:hover {
  color: var(--primary-color);
}

.vt-contact p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

.vt-contact p a:hover::after {
  width: 100%;
}

.vt-footer {
  background: #ffffff;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.vt-footer-nav {
  margin-bottom: 1rem;
}

.vt-footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s;
}

.vt-footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

.vt-footer-nav a:hover {
  color: var(--primary-color);
}

.vt-footer-nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .vt-menu-toggle {
    display: block;
  }
  .vt-nav > ul {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: var(--header-height);
    left: 0;
    z-index: 150;
  }
  .vt-nav > ul.vt-open {
    max-height: 500px;
  }
  .vt-nav > ul > li {
    width: 100%;
  }
  .vt-dropdown {
    position: static;
    box-shadow: none;
    min-width: 0;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .vt-has-dropdown.active .vt-dropdown {
    display: flex;
    flex-direction: column;
  }
  .vt-dropdown li a {
    padding-left: 2rem;
  }
  .vt-hero {
    height: calc(60vh - var(--header-height) * 0.4);
  }
  .vt-hero__content h1 {
    font-size: 2.5rem;
  }
  .vt-hero__content p {
    font-size: 1rem;
  }
}

.vt-gallery h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.vt-gallery h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.vt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.vt-gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.vt-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.vt-gallery-item:hover img {
  transform: scale(1.1);
}

.vt-parallax {
  position: relative;
  background: url("../assets/images/item11.jpeg") center/cover fixed no-repeat;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vt-parallax__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.vt-parallax__content {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  padding: 0 1rem;
}

.vt-parallax__content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vt-parallax__content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vt-parallax__content .vt-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}

.vt-parallax__content .vt-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.vt-courses-detail h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}

.vt-courses-detail h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.vt-course-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.vt-course-item:nth-child(even) {
  flex-direction: row-reverse;
}

.vt-course-item img {
  flex: 1 1 300px;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.vt-course-item img:hover {
  transform: scale(1.05);
}

.vt-course-content {
  flex: 2 1 400px;
}

.vt-course-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  position: relative;
}

.vt-course-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.vt-course-content p {
  margin-bottom: 1rem;
}

.vt-btn-secondary {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  color: var(--accent-color);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.vt-btn-secondary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .vt-course-item {
    flex-direction: column;
    text-align: center;
  }
  .vt-course-item:nth-child(even) {
    flex-direction: column;
  }
  .vt-course-item img,
  .vt-course-content {
    flex: 1 1 100%;
  }
  .vt-course-content h3 {
    font-size: 1.5rem;
  }
}

.course-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.course-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.course-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease forwards;
  z-index: 2;
}
.course-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s 0.5s ease forwards;
}
.course-hero__logo {
  width: 80px;
  margin-bottom: 1rem;
  animation: rotateIn 1s ease;
}
.course-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.course-hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.course-hero__btn {
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}
.course-hero__btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

@keyframes fadeIn {
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotateIn {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(0);
  }
}

.course-info__heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.course-info__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
}
.course-info__text {
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}
.course-info__list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.course-info__list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}
.course-info__list li::before {
  content: "▶";
  position: absolute;
  left: -1.2rem;
  color: var(--accent-color);
}

.course-teachers__heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 0.5rem;
}
.teacher-card {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.teacher-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.teacher-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}
.teacher-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}
.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-schedule__heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}
.schedule-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent-color);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.schedule-content {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}
.day-content {
  display: none;
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  min-width: 240px;
  text-align: center;
  transition: transform 0.3s ease;
}
.day-content.active {
  display: block;
  transform: scale(1.04);
}

.course-reviews {
  padding: 4rem 1rem;
  background: #fafafa;
}
.course-reviews__heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.course-reviews__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
}
.reviews-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0 0.5rem;
}
.review-item {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.review-item blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-color);
}
.review-item cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #666;
}

.course-contact__heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.course-contact__text {
  margin-bottom: 1.75rem;
}
.course-contact__btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
  font-weight: 600;
}
.course-contact__btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .teachers-grid,
  .reviews-list,
  .schedule-content {
    grid-template-columns: 1fr !important;
  }
  .tab-btn {
    flex: 1;
    text-align: center;
  }
}

.course-info,
.course-teachers,
.course-schedule,
.course-reviews,
.course-contact {
  padding: 4rem 2rem;
}

.course-hero {
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .course-info,
  .course-teachers,
  .course-schedule,
  .course-reviews,
  .course-contact {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .course-info,
  .course-teachers,
  .course-schedule,
  .course-reviews,
  .course-contact {
    padding: 2.5rem 1rem;
  }
  .course-hero {
    padding: 0 1rem;
  }
}

.contact-info {
  padding: 4rem 0;
}
.contact-info__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.contact-info__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.contact-info__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.contact-info__item {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.contact-info__item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.contact-info__item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}
.contact-info__item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info__item a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .contact-info {
    padding: 3rem 1rem;
  }
  .contact-info__heading {
    font-size: 2rem;
  }
}

.vt-promotions {
  padding: 4rem 2rem;
}
.vt-promotions__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.vt-promotions__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.vt-promotions__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.vt-promo-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vt-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.vt-promo-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.vt-promo-card p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.vt-promo-card__btn {
  align-self: start;
  background: var(--accent-color);
  color: #fff;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.vt-promo-card__btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .vt-promotions {
    padding: 3rem 1rem;
  }
  .vt-promo-card {
    padding: 1.5rem 1rem;
  }
}

.promo-detail-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  margin-bottom: 4rem;
}
.promo-detail-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.promo-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.promo-detail-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}
.promo-detail-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.promo-detail-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.promo-detail-hero__btn {
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}
.promo-detail-hero__btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.promo-detail-info {
  padding: 4rem 2rem;
  text-align: center;
}
.promo-detail-info__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}
.promo-detail-info__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.promo-detail-info__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2.5rem;
}
.promo-detail-info__step {
  background: #fff;
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.promo-detail-info__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.promo-detail-info__step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}
.promo-detail-info__step p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}
.promo-detail-info__btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.promo-detail-info__btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .promo-detail-hero {
    height: 50vh;
  }
  .promo-detail-hero__title {
    font-size: 2.2rem;
  }
  .promo-detail-info {
    padding: 3rem 1rem;
  }
  .promo-detail-info__grid {
    grid-template-columns: 1fr;
  }
}

.title_background {
  background: var(--primary-color);
  padding: 4rem 0;
}

.title_background .container {
  text-align: center;
}

.title_background .title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.text_background {
  background: var(--bg-light);
  padding: 3rem 0;
}

.text_background .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text_background .text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.75;
  white-space: pre-wrap;
  margin: 0;
}

@media (max-width: 768px) {
  .title_background {
    padding: 3rem 0;
  }
  .title_background .title {
    font-size: 2rem;
  }
  .text_background {
    padding: 2rem 0;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}

.vt-school {
  padding: 4rem 2rem;
  background: #fff;
}
.vt-school h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.vt-school h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.vt-school p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.vt-school img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.school-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.school-section {
  background: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.school-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.school-section p,
.school-section ul {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.school-section ul {
  list-style: none;
  padding-left: 1.25rem;
}
.school-section ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}
.school-section ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.school-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vt-school .vt-btn {
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.vt-school .vt-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .vt-school {
    padding: 3rem 1rem;
  }
  .vt-school h2 {
    font-size: 2.25rem;
  }
  .school-details {
    grid-template-columns: 1fr;
  }
  .vt-school p {
    font-size: 0.95rem;
  }
}
