:root {
    --primary-blue: #0a2463;
    --accent-blue: #3e92cc;
    --light-blue: #e3f2fd;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
  }

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }


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

/* Hero Section */
.service-hero {
  background: linear-gradient(120deg, #e3f2fd 0%, #f0f7fa 100%);
  padding: 60px 0 40px 0;
  border-bottom: 1px solid #e3f2fd;
}
.service-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.service-hero-text {
  flex: 1 1 350px;
}
.service-hero-text h1 {
  font-size: 2.8rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.service-hero-desc {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}
.service-hero-image {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(62, 146, 204, 0.13);
  object-fit: cover;
}
@media (max-width: 900px) {
  .service-hero-flex {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .service-hero-image img {
    max-width: 320px;
  }
  .service-hero-text h1 {
    font-size: 2.1rem;
  }
}

/* Services Timeline Section */
.services-timeline {
  background: #f8fbfd;
  padding: 60px 0 40px 0;
}
.services-timeline h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 8px;
}
.services-header-underline {
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #3e92cc 0%, #0a2463 100%);
  margin: 0 auto 36px auto;
  border-radius: 2px;
}
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #3e92cc, #0a2463);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-icon {
  background: #fff;
  border: 4px solid var(--accent-blue);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(62, 146, 204, 0.15);
}
.timeline-content {
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(62, 146, 204, 0.08);
  margin: 0 32px;
  flex: 1;
  position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 12px solid transparent;
}
.timeline-item:nth-child(odd) .timeline-content::before {
  right: -24px;
  border-left-color: #fff;
  transform: translateY(-50%);
}
.timeline-item:nth-child(even) .timeline-content::before {
  left: -24px;
  border-right-color: #fff;
  transform: translateY(-50%);
}
.timeline-content h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content p {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-features span {
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .timeline-container::before {
    display: none;
  }
  .timeline-icon {
    display: none;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
  .timeline-content::before {
    display: none;
  }
}

/* About Approach Section */
.about-approach {
  background: #fff;
  padding: 60px 0 40px 0;
}
.approach-content {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.approach-text {
  flex: 2 1 400px;
}
.approach-text h2 {
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.approach-text p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.approach-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.approach-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.approach-feature h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.approach-feature p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}
.approach-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}
.approach-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(62, 146, 204, 0.12);
  object-fit: cover;
}
@media (max-width: 900px) {
  .approach-content {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .approach-feature {
    justify-content: center;
  }
  .approach-image img {
    max-width: 300px;
  }
}


/* Services Overview Section */
.services-overview {
  background: linear-gradient(135deg, #f8fbfd 0%, #e3f2fd 100%);
  padding: 80px 0 60px 0;
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(62, 146, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-overview h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.services-overview .services-header-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3e92cc 0%, #0a2463 100%);
  margin: 0 auto 60px auto;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.services-overview-content {
  position: relative;
  z-index: 1;
}

.service-category {
  margin-bottom: 60px;
  border-left: 4px solid var(--accent-blue);
  padding-left: 30px;
  position: relative;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent-blue);
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.service-category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.3);
}

.service-category-header h3 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.service-category-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(62, 146, 204, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-blue), var(--primary-blue));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.15);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item h4 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: 15px;
}

.service-item p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  margin-left: 15px;
  font-style: italic;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 15px;
}

.service-item ul li {
  color: var(--text-gray);
  font-size: 0.95rem;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.service-item ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .services-overview {
    padding: 60px 0 40px 0;
  }
  
  .services-overview h2 {
    font-size: 2rem;
  }
  
  .service-category {
    padding-left: 20px;
    margin-bottom: 40px;
  }
  
  .service-category-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .service-category-header h3 {
    font-size: 1.5rem;
  }
  
  .service-item {
    padding: 20px;
  }
  
  .service-item h4 {
    font-size: 1.2rem;
  }
}

/* Redesigned Services Overview Section */
.services-overview {
  background: linear-gradient(135deg, #f8fbfd 0%, #e3f2fd 100%);
  padding: 80px 0 60px 0;
  position: relative;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(62, 146, 204, 0.10);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(62,146,204,0.08);
  position: relative;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(62, 146, 204, 0.18);
  transform: translateY(-4px) scale(1.02);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(62, 146, 204, 0.13);
}

.service-card h3 {
  color: var(--primary-blue);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.service-card p {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
  font-style: italic;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.service-card ul li {
  color: var(--text-dark);
  font-size: 0.97rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.5;
}

.service-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 1rem;
  font-weight: bold;
  top: 0;
}

@media (max-width: 900px) {
  .services-overview {
    padding: 60px 0 40px 0;
  }
  .services-overview-grid {
    gap: 20px;
    margin-top: 30px;
  }
  .service-card {
    padding: 24px 16px 20px 16px;
  }
  .service-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
}

/* Interactive Services Section */
.interactive-services {
  background: linear-gradient(135deg, #f8fbfd 0%, #e3f2fd 100%);
  padding: 80px 0 60px 0;
  position: relative;
}

.interactive-services h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.services-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.interactive-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: auto;
}

.interactive-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.featured-service {
  border: 2px solid var(--accent-blue);
  position: relative;
}

.featured-service::after {
  content: '⭐';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.2rem;
  color: #ff6b6b;
  z-index: 10;
}

.featured-service .service-icon {
  background: var(--primary-blue);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.service-header h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.service-description {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 12px;
  padding: 0;
}

.service-features {
  margin-bottom: 16px;
  flex-grow: 1;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  color: var(--text-dark);
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 4px;
  padding: 0;
}

.learn-more-btn {
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  margin-top: auto;
}

.learn-more-btn:hover {
  background: var(--primary-blue);
}

.arrow {
  font-size: 0.9rem;
}


/* Service Details Modal */
.service-details-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.service-details-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-details {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-gray);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-details:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.service-details-content {
  padding: 40px;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.3);
  flex-shrink: 0;
}

.service-detail-header h2 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.service-detail-description {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

.service-detail-features h3,
.service-detail-additional h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-detail-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-detail-features li {
  color: var(--text-dark);
  font-size: 1rem;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.service-detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

.service-detail-additional p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-detail-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
  color: #fff;
}

.cta-btn.secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.3);
}

.cta-btn.secondary:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* Training Catalogue Section */
.training-catalogue {
  background: #fff;
  padding: 80px 0 60px 0;
}

.training-catalogue h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.catalogue-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.programme-features {
  margin: 60px 0;
}

.programme-features h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--light-blue);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(62, 146, 204, 0.1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.15);
}

.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h4 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Programmes Table */
.programmes-table-container {
  margin: 60px 0;
}

.programmes-table-container h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 30px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(62, 146, 204, 0.1);
}

.programmes-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 800px;
}

.programmes-table th {
  background: #f8fbfd;
  color: var(--primary-blue);
  padding: 20px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 3px solid var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.programmes-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #e3f2fd;
  font-size: 0.9rem;
  line-height: 1.5;
}

.programmes-table tr:hover {
  background: #f8fbfd;
}

.programmes-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
  text-align: center;
  width: 50px;
}

.programmes-table td:nth-child(2) {
  font-weight: 600;
  color: var(--text-dark);
}

.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.level-badge.trainee {
  background: #e8f5e8;
  color: #2e7d32;
}

.level-badge.level-2 {
  background: #fff3e0;
  color: #f57c00;
}

.level-badge.level-3 {
  background: #e3f2fd;
  color: var(--primary-blue);
}

.level-badge.cpd {
  background: #f3e5f5;
  color: #7b1fa2;
}

.level-badge.all {
  background: #e0f2f1;
  color: #00695c;
}

.level-badge.advanced {
  background: #ffebee;
  color: #c62828;
}

/* Training CTA */
.training-cta {
  background: linear-gradient(135deg, var(--light-blue) 0%, #e3f2fd 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.training-cta h3 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.training-cta p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .interactive-services {
    padding: 60px 0 40px 0;
  }
  
  .interactive-services h2,
  .training-catalogue h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .interactive-card {
    padding: 16px;
  }
  
  .service-header {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .service-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .service-header h3 {
    font-size: 1rem;
  }
  
  .service-description {
    margin-bottom: 10px;
    font-size: 0.85rem;
  }
  
  .service-features {
    margin-bottom: 12px;
  }
  
  .service-details-modal {
    margin: 20px;
    max-height: 90vh;
  }
  
  .service-details-content {
    padding: 30px 20px;
  }
  
  .service-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .service-detail-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .service-detail-header h2 {
    font-size: 1.5rem;
  }
  
  .service-detail-cta {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .programmes-table {
    font-size: 0.8rem;
  }
  
  .programmes-table th,
  .programmes-table td {
    padding: 12px 8px;
  }
  
  .training-cta {
    padding: 30px 20px;
  }
  
  .training-cta h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .services-intro,
  .catalogue-intro {
    font-size: 1rem;
  }
  
  .interactive-card {
    padding: 20px 16px;
  }
  
  .service-details-content {
    padding: 20px 16px;
  }
  
  .programmes-table th,
  .programmes-table td {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
  
  .level-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}
