:root {
  --gold: #cc9933;
  --navy: #141570;
  --blue: #14436b;
  --gray: #e5e5e5;
  --text: #202020;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
}

.container {
  width: 90%;
  margin: auto;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e7e7f0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo span {
  color: #09162a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  max-width: 180px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #141570;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #cc9933;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #14436b;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}
.poster-hero {
  background: #ffffff;
  padding: 60px 0 80px;
}

.hero-poster-wrap {
  position: relative;
  max-width: 920px;
  min-height: 920px;
  padding: 90px 40px 70px;
  text-align: center;
  background: #f6faff;
  border-radius: 55px;
  overflow: hidden;
}

.hero-poster-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 120px;
  background: #ffffff;
  border-bottom-left-radius: 34px;
}

.hero-logo {
  position: absolute;
  top: 25px;
  right: 85px;
  z-index: 2;
}

.hero-logo img {
  width: 95px;
  height: auto;
}

.hero-label {
  position: relative;
  display: inline-block;
  margin-top: 70px;
  padding: 12px 45px;
  border: 2px dashed #14436b;
  color: #14436b;
  font-size: 30px;
  font-weight: 500;
}

.hero-label p {
  margin: 0;
}

.corner-box {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 22px;
  height: 22px;
  background: #13b5de;
  box-shadow: 8px 8px 0 transparent;
}

.script-text {
  margin: 35px 0 10px;
  color: #14436b;
  font-size: 48px;
  font-family: "Brush Script MT", cursive;
  letter-spacing: 6px;
  transform: rotate(-3deg);
}

.poster-hero h1 {
  margin: 10px 0 30px;
  line-height: 1.05;
}

.poster-hero h1 span {
  display: block;
  color: #14436b;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
}

.poster-hero h1 strong {
  display: block;
  color: #cc9933;
  font-size: clamp(46px, 8vw, 82px);
  font-weight: 300;
}

.image-collage {
  position: relative;
  width: 520px;
  height: 500px;
  margin: 0 auto;
}

.circle-img {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 7px;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.small-img {
  width: 150px;
  height: 150px;
  top: 25px;
  left: 55px;
  border: 1.5px solid #14436b;
}

.medium-img {
  width: 225px;
  height: 225px;
  top: 35px;
  right: 30px;
  border: 1.5px solid #cc9933;
}

.large-img {
  width: 330px;
  height: 330px;
  left: 90px;
  bottom: 0;
  border: 1.5px solid #13b5de;
}

.dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  z-index: 5;
}

.dot-dark {
  width: 45px;
  height: 45px;
  top: -5px;
  left: 240px;
  background: #333333;
}

.dot-blue {
  width: 28px;
  height: 28px;
  top: 225px;
  left: 25px;
  background: #13b5de;
}

.dot-gold {
  width: 55px;
  height: 55px;
  right: 18px;
  bottom: 115px;
  background: #cc9933;
}

.btn-outline {
  color: #14436b;
  border: 2px solid #14436b;
  background: transparent;
}

.poster-hero .hero-actions {
  justify-content: center;
  margin-top: 35px;
}
.btn {
  background: var(--gold);
  color: white;
  padding: 12px 25px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 20px;
  text-decoration: none;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: var(--gray);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  padding: 20px;
  background: #f6faff;
  border-radius: 10px;
}

.card.dark {
  background: var(--navy);
  color: white;
}

.footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}

.workshop-section {
  background: #ffffff;
  padding: 80px 0 90px;
}

.workshop-heading {
  text-align: center;
  margin-bottom: 70px;
}

.workshop-heading h2 {
  color: #141570;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
}

.workshop-heading h2 strong {
  font-weight: 900;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 45px;
  position: relative;
}

.workshop-grid::before {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  top: 115px;
  height: 1px;
  background: #cccccc;
}

.workshop-grid::after {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  top: 430px;
  height: 1px;
  background: #cccccc;
}

.workshop-item {
  position: relative;
  text-align: center;
  z-index: 2;
  min-height: 300px;
}

.workshop-icon {
  color: #14436b;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 30px;
}

.workshop-dot {
  display: block;
  width: 16px;
  height: 16px;
  background: #14436b;
  border-radius: 50%;
  margin: 0 auto 22px;
}

.workshop-item h3 {
  color: #e7e7f0;
  font-size: 70px;
  line-height: 1;
  font-weight: 300;
  margin: 0 0 15px;
}

.workshop-item h4 {
  color: #09162a;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 auto 14px;
  max-width: 280px;
}

.workshop-item p {
  color: #14436b;
  font-size: 16px;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* CURRICULUM */

.curriculum-section {
  background: #f6faff;
  position: relative;
  overflow: hidden;
}

.curriculum-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -180px;
  top: 100px;
  border-radius: 50%;
  border: 1px solid rgba(204, 153, 51, 0.35);
}

.curriculum-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 45px;
  flex-wrap: wrap;
}

.curriculum-tab {
  border: 1px solid #e7e7f0;
  background: #ffffff;
  color: #14436b;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
}

.curriculum-tab.active,
.curriculum-tab:hover {
  background: #14436b;
  color: #ffffff;
  border-color: #14436b;
}

.curriculum-panel {
  display: none;
}

.curriculum-panel.active {
  display: block;
}

.curriculum-intro {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.curriculum-intro h3 {
  color: #09162a;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
}

.curriculum-intro p {
  color: #202020;
  font-size: 17px;
  line-height: 1.8;
}

.curriculum-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.curriculum-week-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid rgba(20, 67, 107, 0.12);
  border-radius: 34px;
  padding: 34px 26px 28px;
  box-shadow: 0 18px 45px rgba(9, 22, 42, 0.05);
  overflow: hidden;
  transition: 0.25s ease;
}

.curriculum-week-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(9, 22, 42, 0.09);
}

.curriculum-week-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 1px solid rgba(204, 153, 51, 0.35);
  background: rgba(204, 153, 51, 0.04);
}

.curriculum-week-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cc9933;
}

.curriculum-week-card.advanced::before {
  border-color: rgba(20, 67, 107, 0.25);
  background: rgba(20, 67, 107, 0.04);
}

.curriculum-week-card.advanced::after {
  background: #14436b;
}

.week-badge {
  display: inline-block;
  margin-bottom: 24px;
  color: #14436b;
  background: transparent;
  border: 1px dashed rgba(20, 67, 107, 0.45);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.curriculum-week-card h4 {
  position: relative;
  z-index: 2;
  color: #09162a;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.focus {
  position: relative;
  z-index: 2;
  color: #cc9933;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.curriculum-week-card.advanced .focus {
  color: #14436b;
}

.curriculum-week-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.curriculum-week-card li {
  position: relative;
  color: #202020;
  font-size: 14.5px;
  line-height: 1.65;
  padding-left: 24px;
  margin-bottom: 9px;
}

.curriculum-week-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cc9933;
  box-shadow: 0 0 0 4px rgba(204, 153, 51, 0.14);
}

.curriculum-week-card.advanced li::before {
  background: #14436b;
  box-shadow: 0 0 0 4px rgba(20, 67, 107, 0.12);
}

.practical-box {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 67, 107, 0.1);
  color: #202020;
  font-size: 14px;
  line-height: 1.7;
}

.practical-box strong {
  display: block;
  color: #09162a;
  margin-bottom: 5px;
}

/* APPLY SECTION */

.apply-section {
  background: #ffffff;
  padding: 90px 0;
}

.apply-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.apply-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(204, 153, 51, 0.12);
  color: #cc9933;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

.apply-content h2 {
  color: #09162a;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 22px;
}

.apply-text {
  color: #202020;
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 35px;
}

.apply-features {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.apply-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.apply-feature span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #14436b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.apply-feature p {
  margin: 0;
  color: #09162a;
  font-weight: 600;
}

.apply-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.apply-card {
  background: linear-gradient(180deg, #14436b 0%, #141570 100%);

  border-radius: 36px;
  padding: 40px 35px;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(20, 21, 112, 0.18);
}

.apply-stat + .apply-stat {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.apply-stat h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.apply-stat p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* BUTTONS */

.apply-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-gold {
  background: #CC9933;
  color: #ffffff;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(204,153,51,0.25);
}

.btn-outline {
  background: transparent;
  color: #14436B;
  border: 2px solid #14436B;
}

.btn-outline:hover {
  background: #14436B;
  color: #ffffff;
  transform: translateY(-3px);
}

/* MODAL */

.form-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.form-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 90vh;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #09162A;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.close-modal:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {

  .apply-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .modal-content {
    height: 95vh;
    border-radius: 18px;
  }

}

/* FEES SECTION */

.fees-section {
  background: #F6FAFF;
  padding: 90px 0;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 55px;
}

.fee-card {
  background: #ffffff;
  border-radius: 34px;
  padding: 42px 36px;
  border: 1px solid rgba(20, 67, 107, 0.1);
  box-shadow: 0 18px 45px rgba(9, 22, 42, 0.05);
  transition: 0.3s ease;
}

.fee-card:hover {
  transform: translateY(-6px);
}

.fee-card.featured {
  background: linear-gradient(
    180deg,
    #14436B 0%,
    #141570 100%
  );

  color: #ffffff;
}

.fee-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(204, 153, 51, 0.12);
  color: #CC9933;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 26px;
}

.fee-card h3 {
  font-size: 62px;
  line-height: 1;
  margin-bottom: 10px;
}

.fee-naira {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.fee-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fee-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.fee-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CC9933;
}

.fee-card.featured li::before {
  background: #ffffff;
}

/* CONTACT SECTION */

.contact-section {
  background: #ffffff;
  padding: 90px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.contact-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(20, 67, 107, 0.08);
  color: #14436B;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-content h2 {
  color: #09162A;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 22px;
}

.contact-text {
  color: #202020;
  font-size: 17px;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 40px;
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #F6FAFF;
  border-radius: 24px;
  border: 1px solid rgba(20, 67, 107, 0.08);
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #14436B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  margin: 0 0 8px;
  color: #09162A;
  font-size: 18px;
}

.contact-item a {
  color: #14436B;
  text-decoration: none;
  font-weight: 700;
}

.contact-item a:hover {
  color: #CC9933;
}

.contact-item p {
  margin: 0;
  color: #202020;
  line-height: 1.7;
}

.contact-card {
  background: linear-gradient(
    180deg,
    #14436B 0%,
    #141570 100%
  );

  color: #ffffff;
  border-radius: 36px;
  padding: 42px 38px;
  box-shadow: 0 30px 70px rgba(20, 21, 112, 0.18);
}

.contact-card h3 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-stats {
  display: grid;
  gap: 24px;
}

.contact-stat {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-stat strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.contact-stat span {
  color: rgba(255,255,255,0.75);
}

/* MAP CARD */

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-content {
  padding: 32px 32px 20px;
}

.map-content h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.map-content p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0;
}

.map-wrapper {
  width: 100%;
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* FOOTER */

.footer {
  background: #09162A;
  color: #ffffff;
  padding-top: 75px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.footer-logo img {
  width: 72px;
  height: auto;
}

.footer-brand h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 22px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-bottom: 14px;
  line-height: 1.7;
}

.footer-column a:hover {
  color: #CC9933;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

@media (max-width: 850px) {

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .footer {
    padding-top: 60px;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 900px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .contact-section {
    padding: 65px 0;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-card {
    padding: 30px 24px;
  }

}
@media (max-width: 800px) {

  .fees-grid {
    grid-template-columns: 1fr;
  }

  .fee-card h3 {
    font-size: 48px;
  }

}

@media (max-width: 900px) {
  .apply-wrapper {
    grid-template-columns: 1fr;
  }

  .apply-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .apply-section {
    padding: 65px 0;
  }

  .apply-content h2 {
    font-size: 34px;
  }

  .apply-actions {
    flex-direction: column;
  }

  .apply-actions .btn {
    width: 100%;
    text-align: center;
  }

  .apply-card {
    padding: 30px 24px;
  }
}

/* RESPONSIVENESS */

@media (max-width: 768px) {
  .nav {
    min-height: 74px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo span {
    font-size: 17px;
    max-width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e7e7f0;
    box-shadow: 0 20px 40px rgba(9, 22, 42, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 12px;
    background: #f6faff;
    margin-top: 8px;
  }
  .poster-hero {
    padding: 30px 0 50px;
  }

  .hero-poster-wrap {
    width: 94%;
    min-height: auto;
    padding: 70px 20px 45px;
    border-radius: 35px;
  }

  .hero-poster-wrap::before {
    width: 170px;
    height: 95px;
  }

  .hero-logo {
    top: 18px;
    right: 48px;
  }

  .hero-logo img {
    width: 70px;
  }

  .hero-label {
    margin-top: 55px;
    padding: 10px 25px;
    font-size: 22px;
  }

  .script-text {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .image-collage {
    width: 320px;
    height: 360px;
  }

  .small-img {
    width: 105px;
    height: 105px;
    top: 35px;
    left: 15px;
  }

  .medium-img {
    width: 150px;
    height: 150px;
    top: 45px;
    right: 10px;
  }

  .large-img {
    width: 230px;
    height: 230px;
    left: 45px;
    bottom: 5px;
  }

  .dot-dark {
    width: 35px;
    height: 35px;
    left: 150px;
  }

  .dot-blue {
    width: 22px;
    height: 22px;
    top: 185px;
    left: 5px;
  }

  .dot-gold {
    width: 42px;
    height: 42px;
    right: 0;
    bottom: 85px;
  }

  .poster-hero .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-grid::before,
  .workshop-grid::after {
    display: none;
  }

  .workshop-item {
    padding: 25px;
    border: 1px solid #e7e7f0;
    border-radius: 24px;
    background: #f6faff;
  }
}

@media (max-width: 600px) {
  .workshop-section {
    padding: 60px 0;
  }

  .workshop-heading {
    margin-bottom: 35px;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workshop-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .workshop-item h3 {
    font-size: 54px;
  }

  .workshop-item h4 {
    font-size: 20px;
  }
}

@media (max-width: 1100px) {
  .curriculum-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .curriculum-section {
    padding: 60px 0;
  }

  .curriculum-tabs {
    gap: 10px;
  }

  .curriculum-tab {
    width: 100%;
  }

  .curriculum-timeline {
    grid-template-columns: 1fr;
  }

  .curriculum-week-card {
    padding: 26px 20px;
  }
}
