/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1929 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Futuristic Tech Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #e0e0e0;
  font-size: 16px;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00ccff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header & Navigation */
header {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #00ffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #00ccff);
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00ffff, #0099ff);
  color: #0a0e27;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 255, 255, 0.3);
  transition: right 0.4s ease;
  border-left: 2px solid #00ffff;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00ffff;
  color: #0a0e27;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #00ffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  border-bottom-color: #00ffff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3); }
  to { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5); }
}

.hero-subheadline {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 2px solid #00ffff;
  background: transparent;
  color: #00ffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #0099ff);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #0a0e27;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #00ffff, #0099ff);
  color: #0a0e27;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0099ff, #00ffff);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #00ffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.value-proposition,
.services-overview,
.benefits,
.testimonials,
.mission,
.story,
.team,
.impact,
.programmes,
.school-programmes,
.resource-categories,
.featured-resources,
.articles,
.contact-methods,
.location,
.office-hours,
.team-contacts,
.legal-content {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Stats Grid */
.stats-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 153, 255, 0.1));
  border: 2px solid #00ffff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.stat-label {
  font-size: 16px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.service-card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p {
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #00ffff;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.service-card .btn {
  margin-top: 16px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-item {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-item:hover {
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
  transform: translateX(5px);
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #b0b0b0;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #00ffff;
}

.testimonial-card .author {
  font-weight: 700;
  color: #00ffff;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-card .role {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 153, 255, 0.15));
  border: 2px solid #00ffff;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.cta-banner h2 {
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 32px;
}

.cta-banner .secondary-cta {
  margin-top: 24px;
  font-size: 16px;
}

/* Location Info */
.location-info,
.location {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.location-details {
  margin-top: 32px;
  padding: 24px;
  background: rgba(10, 14, 39, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.location-details p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.location-details strong {
  color: #00ffff;
  font-weight: 700;
}

/* Programme Cards */
.programme-card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.programme-card:hover {
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
  transform: translateX(5px);
}

.programme-card h2,
.programme-card h3 {
  margin-bottom: 12px;
}

.age-group {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid #00ffff;
}

.programme-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.programme-card ul li {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #b0b0b0;
  position: relative;
}

.programme-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-weight: 700;
}

/* Values Grid */
.values-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.value-item {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 28px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

/* Team Grid */
.team-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.team-member,
.team-contact {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.team-member:hover,
.team-contact:hover {
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
}

.team-member h3,
.team-contact h3 {
  margin-bottom: 8px;
}

.team-member .role,
.team-contact .role {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.team-member p,
.team-contact p {
  color: #b0b0b0;
  line-height: 1.7;
  text-align: left;
}

/* Categories & Resources Grid */
.categories-grid,
.resources-grid,
.articles-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.category-card,
.resource-card,
.article-card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover,
.resource-card:hover,
.article-card:hover {
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
}

.resource-meta,
.read-time {
  display: block;
  font-size: 14px;
  color: #888;
  margin-top: 16px;
  font-style: italic;
}

/* Contact Grid */
.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.contact-card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card .details {
  color: #888;
  font-size: 14px;
  margin-top: 12px;
}

.contact-card .response-time {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin-top: 16px;
  border: 1px solid #00ffff;
}

/* Form Note */
.form-note {
  background: rgba(255, 167, 38, 0.1);
  border: 2px solid #FFA726;
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

.form-note p {
  color: #e0e0e0;
  margin-bottom: 12px;
}

.form-note strong {
  color: #FFA726;
}

/* Office Hours Grid */
.hours-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: space-between;
}

.hours-item {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  margin-bottom: 20px;
}

.hours-item strong {
  display: block;
  color: #00ffff;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-item p {
  color: #b0b0b0;
  margin: 0;
}

.special-notice {
  background: rgba(255, 167, 38, 0.1);
  border: 1px solid #FFA726;
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
  color: #e0e0e0;
  font-size: 14px;
}

/* Legal Content */
.legal-hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.last-updated {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid #00ffff;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(10, 14, 39, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.legal-section ul,
.legal-section ol {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-section li {
  color: #b0b0b0;
  margin-bottom: 12px;
  line-height: 1.7;
  list-style-position: outside;
}

.legal-section ul li {
  list-style-type: disc;
}

.legal-section ol li {
  list-style-type: decimal;
}

/* Thank You Page */
.next-steps,
.while-you-wait,
.contact-info {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.steps-grid,
.suggestions-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}

.step-item,
.suggestion-card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.step-item:hover,
.suggestion-card:hover {
  border-color: #00ffff;
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
}

.timeframe {
  display: block;
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid #00ffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  box-shadow: 0 -4px 20px rgba(0, 255, 255, 0.3);
}

.footer-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h4 {
  color: #00ffff;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00ffff;
  padding-left: 5px;
}

.footer-section p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
  border-top: 2px solid #00ffff;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 25px rgba(0, 255, 255, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
  border: 2px solid #00ffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-category {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category p {
  color: #b0b0b0;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grid adjustments to single column */
  .stats-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .resources-grid,
  .articles-grid,
  .contact-grid,
  .hours-grid,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .value-item,
  .team-member,
  .team-contact,
  .category-card,
  .resource-card,
  .article-card,
  .contact-card,
  .hours-item,
  .step-item,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
  }
  
  /* Modal adjustments */
  .cookie-modal {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimization */
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  section {
    padding: 30px 15px;
  }
  
  .service-card,
  .programme-card,
  .legal-section {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .badge {
    width: 100%;
    text-align: center;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal,
  .cta-buttons,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    text-shadow: none;
  }
}