:root {
  --accent: #ff5c35;
  --dark: #0d0d0d;
  --light: #ffffff;
  --text: #1f1f1f;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
}

.site-header {
  background: var(--dark);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-label {
  font-weight: 600;
  margin: 0;
}

.brand-sub {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.cta-link {
  padding: 0.5rem 1rem;
  border: 1px solid var(--light);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--light);
  display: flex;
  align-items: stretch;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(1400px, 100%);
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.eyebrow strong {
  color: var(--accent);
  font-size: 1rem;
}
.hero-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.slide-wrap {
  position: relative;
  min-height: 420px;
  flex: 1;
  max-width: 1100px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 5rem;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-slide h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
}

.hero-slide p {
  max-width: 70ch;
  line-height: 1.5;
}

.highlight {
  font-weight: 600;
}

.proof-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.primary-cta {
  background: var(--accent);
  color: var(--dark);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.secondary-cta {
  background: transparent;
  color: var(--light);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.solutions-section {
  background: var(--light);
  padding: 5rem 6vw;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0 0 1rem 0;
}

.solutions-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text);
  text-align: center;
  margin: 0 0 4rem 0;
  opacity: 0.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  background: var(--light);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.solution-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.solution-card-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 1rem 0;
}

.solution-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  opacity: 0.85;
}

.trusted-section {
  background: var(--light);
  padding: 4rem 6vw;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trusted-container {
  max-width: 1400px;
  margin: 0 auto;
}

.trusted-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0 0 3rem 0;
}

.logos-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-carousel {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.logos-carousel:hover {
  animation-play-state: paused;
}

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

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  width: 200px;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

.stats-section {
  background: var(--light);
  padding: 5rem 6vw;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.circular-progress {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 1.5rem;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 1.5s ease-in-out;
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  max-width: 200px;
}

.highlights-section {
  background: var(--light);
  padding: 4rem 6vw;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.highlights-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.highlight-value {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0;
  line-height: 1.4;
  width: 100%;
}

.strategic-section {
  background: #f6f6f6;
  padding: 5rem 6vw;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.strategic-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.strategic-text {
  max-width: 900px;
}

.strategic-eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 0 0.75rem 0;
}

.strategic-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--dark);
  margin: 0 0 1rem 0;
}

.strategic-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.strategic-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.strategic-card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.05);
}

.strategic-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  color: var(--dark);
}

.strategic-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.strategic-card li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
  color: var(--text);
}

.strategic-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.highlight-card {
  border-color: rgba(255, 92, 53, 0.2);
  background: #fff6f3;
}

.strategic-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .strategic-section {
    padding: 3.5rem 1.5rem;
  }

  .strategic-lists {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  background: #0d0d0d;
  color: var(--light);
  padding: 5rem 6vw;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 0.75rem 0;
  text-align: center;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 0 0 0.5rem 0;
}

.faq-subtitle {
  text-align: center;
  margin: 0 auto 2.5rem auto;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.75);
}

.faq-subtitle a {
  color: var(--accent);
}

.faq-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--light);
  font-size: 1.1rem;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-weight: 600;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: rgba(255, 255, 255, 0.85);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3.5rem 1.5rem;
  }
}

.testimonials-section {
  background: var(--light);
  padding: 5rem 6vw;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent);
  text-align: center;
  margin: 0 0 0.75rem 0;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 0 0 0.75rem 0;
  color: var(--dark);
}

.testimonials-subtitle {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 3rem auto;
  color: var(--text);
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 15, 15, 0.08);
}

.testimonial-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.4;
}

.testimonial-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.9;
}

.testimonial-author {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5f5f5f;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3.5rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  background: var(--light);
  color: var(--text);
  padding: 5rem 6vw;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
}

/* Simple contact form layout */
.contact-container.contact-simple {
  max-width: 700px;
  grid-template-columns: 1fr;
  text-align: center;
}

.contact-container.contact-simple .contact-copy {
  margin-bottom: 2rem;
}

.contact-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
}

.contact-copy h2 {
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-copy p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
  color: var(--text);
}

.contact-copy ul {
  margin: 1.5rem 0 0 0;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-form {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-grid label {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  color: var(--text);
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
}

.submit-cta {
  align-self: flex-start;
  background: var(--accent);
  color: var(--dark);
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3.5rem 1.5rem;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

.programmes-section {
  background: var(--light);
  padding: 5rem 6vw;
}

.programmes-container {
  max-width: 1400px;
  margin: 0 auto;
}

.programmes-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0 0 4rem 0;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.programme-card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Card Type 1: Image on side */
.card-type-1 {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.card-type-1 .card-image-wrapper {
  overflow: hidden;
}

.card-type-1 .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-type-1 .card-content {
  padding: 2.5rem;
}

/* Card Type 2: Image inline */
.card-type-2 .card-content {
  padding: 2.5rem;
}

.card-image-inline {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.card-image-inline img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Type 3: Background image */
.card-type-3 {
  position: relative;
  min-height: 500px;
}

.card-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.card-type-3 .card-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  background: var(--light);
}

/* Card Type 4: Card with top image */
.card-type-4 {
  display: flex;
  flex-direction: column;
}

.card-image-top {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-type-4 .card-content {
  padding: 2.5rem;
}

/* Card Type 5: Image on side (like type 1) but full width */
.card-type-5 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 400px 1fr;
}

.card-type-5 .card-image-wrapper {
  overflow: hidden;
}

.card-type-5 .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-type-5 .card-content {
  padding: 2.5rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  opacity: 0.85;
}

.card-areas {
  margin-top: 1rem;
}

.areas-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.75rem 0;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.areas-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.areas-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.card-type-5 .areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.courses-section {
  background: var(--light);
  padding: 5rem 6vw;
}

.courses-container {
  max-width: 1400px;
  margin: 0 auto;
}

.courses-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0 0 1rem 0;
}

.courses-intro {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0 0 1rem 0;
}

.courses-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text);
  text-align: center;
  margin: 0 0 4rem 0;
  opacity: 0.85;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.course-card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.course-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.course-card.active {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.course-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-content {
  padding: 1.5rem;
}

.course-card-title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.course-featured {
  margin-top: 4rem;
}

.course-featured-card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.course-featured-image {
  width: 100%;
  overflow: hidden;
}

.course-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-featured-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.course-featured-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  opacity: 0.85;
}

.course-featured-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  opacity: 0.75;
  font-style: italic;
}

.course-cta {
  background: var(--accent);
  color: var(--dark);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.2s ease;
}

.course-cta:hover {
  background: #e64a2a;
  transform: translateY(-2px);
}

.card-cta {
  background: var(--accent);
  color: var(--dark);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.2s ease;
}

.card-cta:hover {
  background: #e64a2a;
  transform: translateY(-2px);
}

.card-cta-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--accent);
}

.card-cta-outline:hover {
  background: var(--accent);
  color: var(--dark);
}

.site-footer {
  background: #050505;
  color: var(--light);
  padding: 2.5rem 6vw;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem 0;
}

.footer-address {
  margin: 0 0 0.5rem 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.footer-phone {
  color: var(--accent);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-copy {
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
  }

  .hero-body {
    flex-direction: column;
    gap: 0;
  }

  .slider-arrow {
    display: none;
  }

  .slide-wrap {
    width: 100%;
    min-height: 480px;
  }

  .hero-slide {
    padding-bottom: 2rem;
    gap: 0.75rem;
  }

  .hero-slide h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-slide p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .proof-points {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .solutions-section {
    padding: 3rem 1.5rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem;
  }

  .trusted-section {
    padding: 3rem 1.5rem;
  }

  .logos-carousel {
    gap: 2.5rem;
  }

  .logo-item {
    width: 150px;
  }

  .stats-section {
    padding: 3rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .circular-progress {
    width: 140px;
    height: 140px;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-text {
    font-size: 0.9rem;
    max-width: 180px;
  }

  .highlights-section {
    padding: 3rem 1.5rem;
  }

  .programmes-section {
    padding: 3rem 1.5rem;
  }

  .programmes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-type-1 {
    grid-template-columns: 1fr;
  }

  .card-type-1 .card-image-wrapper {
    height: 250px;
  }

  .card-type-3 {
    min-height: auto;
  }

  .card-type-5 {
    grid-template-columns: 1fr;
  }

  .card-type-5 .card-image-wrapper {
    height: 250px;
  }

  .card-type-5 .areas-list {
    grid-template-columns: 1fr;
  }

  .courses-section {
    padding: 3rem 1.5rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .course-featured-card {
    grid-template-columns: 1fr;
  }

  .course-featured-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.about-hero {
  background: var(--dark);
  color: var(--light);
  padding: 5rem 6vw;
  text-align: center;
  background-image: url('./images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: var(--accent);
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  color: var(--accent);
}

.about-intro {
  background: var(--light);
  padding: 5rem 6vw;
}

.about-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 1.5rem 0;
}

.about-intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 1.5rem 0;
}

.about-intro-content p:last-child {
  margin-bottom: 0;
}

.about-intro-image {
  border-radius: 12px;
  overflow: hidden;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.programs-content {
  background: var(--light);
  padding: 5rem 6vw;
}

.programs-content-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.program-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-item:nth-child(even) .program-item-image {
  order: 2;
}

.program-item:nth-child(even) .program-item-text {
  order: 1;
}

.program-item-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.program-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

.program-item-image {
  width: 100%;
  max-width: 600px;
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.program-item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.program-item-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-methodology {
  background: #f6f6f6;
  padding: 5rem 6vw;
}

.about-methodology-container {
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0 0 3rem 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.methodology-item {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.methodology-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 1rem 0;
}

.methodology-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  opacity: 0.85;
}

.about-cta {
  background: var(--dark);
  color: var(--light);
  padding: 5rem 6vw;
  text-align: center;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--light);
}

.about-cta-text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 3.5rem 1.5rem;
  }

  .about-intro {
    padding: 3rem 1.5rem;
  }

  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .programs-content {
    padding: 3rem 1.5rem;
  }

  .programs-content-container {
    gap: 3rem;
  }

  .program-item {
    gap: 1.25rem;
  }

  .program-item-image {
    max-width: 100%;
    margin: 0.75rem 0;
  }

  .about-methodology {
    padding: 3rem 1.5rem;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .methodology-item {
    padding: 2rem;
  }

  .about-cta {
    padding: 3.5rem 1.5rem;
  }
}

/* Legal Pages (Terms, Privacy Policy) */
.legal-page {
  background: var(--light);
  color: var(--text);
  padding: 5rem 6vw;
  min-height: 60vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 1rem 0;
  color: var(--dark);
}

.legal-updated {
  color: var(--text);
  opacity: 0.7;
  margin: 0 0 3rem 0;
  font-size: 0.9rem;
}

.legal-content {
  line-height: 1.8;
}

.legal-content section {
  margin: 0 0 2.5rem 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: var(--dark);
  font-weight: 600;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--dark);
  font-weight: 600;
}

.legal-content p {
  margin: 0 0 1rem 0;
  color: var(--text);
}

.legal-content ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
  color: var(--text);
  line-height: 1.8;
}

.legal-content li {
  margin: 0.5rem 0;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 3.5rem 1.5rem;
  }

  .legal-content section {
    margin: 0 0 2rem 0;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }

  .legal-content h3 {
    font-size: 1.1rem;
  }
}

