@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul, ol {
    list-style: none;
  }
}

@layer tokens {
  :root {
    --color-coral: #FF6B6B;
    --color-teal: #06D6A0;
    --color-purple: #7B68EE;
    --color-amber: #FFB800;
    --color-blue: #118AB2;
    
    --color-dark: #1A1A2E;
    --color-grey: #4A5568;
    --color-light-grey: #E2E8F0;
    --color-off-white: #F7FAFC;
    
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 
      0 1px 2px rgba(0, 0, 0, 0.04),
      0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 
      0 2px 4px rgba(0, 0, 0, 0.05),
      0 4px 8px rgba(0, 0, 0, 0.06),
      0 8px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 
      0 4px 8px rgba(0, 0, 0, 0.04),
      0 8px 16px rgba(0, 0, 0, 0.06),
      0 16px 32px rgba(0, 0, 0, 0.08),
      0 24px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl:
      0 8px 16px rgba(0, 0, 0, 0.05),
      0 16px 32px rgba(0, 0, 0, 0.07),
      0 24px 48px rgba(0, 0, 0, 0.09),
      0 32px 64px rgba(0, 0, 0, 0.11);
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-off-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .container-narrow {
    max-width: 960px;
  }
  
  .container-wide {
    max-width: 1440px;
  }
  
  section {
    padding: var(--space-2xl) 0;
    position: relative;
  }
  
  @media (max-width: 768px) {
    section {
      padding: var(--space-xl) 0;
    }
  }
}

@layer components {
  
  /* Header & Navigation */
  .header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base);
  }
  
  .header.scrolled {
    box-shadow: var(--shadow-md);
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
  }
  
  .logo svg {
    width: 40px;
    height: 40px;
  }
  
  .nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .nav-links {
    display: flex;
    gap: var(--space-lg);
  }
  
  .nav-links a {
    font-weight: 500;
    color: var(--color-grey);
    transition: color var(--transition-fast);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-coral);
    transition: width var(--transition-base);
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-dark);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-off-white);
    border-radius: var(--radius-sm);
  }
  
  .lang-btn {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-grey);
    transition: color var(--transition-fast);
    padding: 4px 8px;
    border-radius: 4px;
  }
  
  .lang-btn:hover {
    color: var(--color-dark);
  }
  
  .lang-btn.active {
    color: white;
    background: var(--color-coral);
  }
  
  .lang-divider {
    color: var(--color-light-grey);
  }
  
  .nav-cta {
    position: relative;
  }
  
  .nav-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--color-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(1.2);
    }
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
    padding: var(--space-xs);
  }
  
  @media (max-width: 968px) {
    .nav-main {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: white;
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-2xl) var(--space-lg);
      box-shadow: var(--shadow-xl);
      transition: right var(--transition-slow);
      gap: var(--space-xl);
    }
    
    .nav-main.active {
      right: 0;
    }
    
    .nav-links {
      flex-direction: column;
      gap: var(--space-md);
      width: 100%;
    }
    
    .nav-links a {
      font-size: 1.125rem;
      padding: var(--space-sm) 0;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .mobile-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }
    
    .mobile-overlay.active {
      display: block;
    }
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--color-coral) 0%, #FF8787 100%);
    color: white;
    padding: var(--space-3xl) 0;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  
  .hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-weight: 700;
  }
  
  .hero-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
  }
  
  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }
  
  .benefit-item {
    text-align: center;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
    backdrop-filter: blur(10px);
  }
  
  .benefit-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .hero-form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: var(--color-dark);
  }
  
  .hero-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
  }
  
  .hero-form p {
    color: var(--color-grey);
    margin-bottom: var(--space-lg);
  }
  
  @media (max-width: 968px) {
    .hero {
      padding: var(--space-2xl) 0;
      clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    }
    
    .hero-content {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
    
    .hero-benefits {
      grid-template-columns: 1fr;
    }
  }
  
  /* Forms */
  .form-group {
    margin-bottom: var(--space-md);
  }
  
  label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-dark);
    font-size: 0.875rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--color-coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
  }
  
  .checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.875rem;
    cursor: pointer;
  }
  
  .checkbox-group a {
    color: var(--color-coral);
    text-decoration: underline;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    font-size: 1rem;
  }
  
  .btn-primary {
    background: var(--color-coral);
    color: white;
    box-shadow: var(--shadow-md);
  }
  
  .btn-primary:hover {
    background: #FF5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-secondary {
    background: white;
    color: var(--color-coral);
    border: 2px solid var(--color-coral);
  }
  
  .btn-secondary:hover {
    background: var(--color-coral);
    color: white;
  }
  
  .btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* Workflow Section */
  .workflow {
    background: linear-gradient(135deg, var(--color-teal) 0%, #04BF8A 100%);
    color: white;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  }
  
  .workflow h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    margin-top: var(--space-2xl);
  }
  
  .workflow-step {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
  }
  
  .workflow-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }
  
  .workflow-step p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.95;
  }
  
  .workflow-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -2rem;
    font-size: 2rem;
    transform: translateY(-50%);
    opacity: 0.5;
  }
  
  .workflow-step:last-child::after {
    display: none;
  }
  
  @media (max-width: 968px) {
    .workflow-steps {
      grid-template-columns: 1fr;
    }
    
    .workflow-step::after {
      content: '↓';
      top: auto;
      bottom: -2rem;
      right: 50%;
      transform: translateX(50%);
    }
  }
  
  /* Services Grid */
  .services {
    background: linear-gradient(135deg, var(--color-purple) 0%, #6A5ACD 100%);
    color: white;
  }
  
  .services h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-md);
  }
  
  .services-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }
  
  .service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }
  
  .service-card p {
    line-height: 1.6;
    opacity: 0.95;
  }
  
  @media (max-width: 968px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Report Section */
  .report-section {
    background: linear-gradient(135deg, var(--color-amber) 0%, #FFA500 100%);
    color: var(--color-dark);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  }
  
  .report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  
  .report-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
  }
  
  .report-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
  
  .report-features {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .report-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.3);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
  }
  
  .report-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .report-feature h4 {
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .report-feature p {
    font-size: 0.9375rem;
    margin: 0;
  }
  
  .report-image {
    position: relative;
  }
  
  .report-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
  }
  
  @media (max-width: 968px) {
    .report-content {
      grid-template-columns: 1fr;
    }
  }
  
  /* Coverage Section */
  .coverage {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0E7C9C 100%);
    color: white;
  }
  
  .coverage h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .coverage-area {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
  }
  
  .coverage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--space-md);
  }
  
  .coverage-area h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .coverage-area p {
    font-size: 1.125rem;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .coverage-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* CTA Section */
  .cta-section {
    background: var(--color-off-white);
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
    color: var(--color-dark);
  }
  
  .cta-content p {
    font-size: 1.125rem;
    color: var(--color-grey);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
  }
  
  .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Team Page */
  .team-hero {
    background: linear-gradient(135deg, var(--color-purple) 0%, #6A5ACD 100%);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
  }
  
  .team-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
  }
  
  .team-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
  }
  
  .team-member {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }
  
  .team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-member-info {
    padding: var(--space-lg);
  }
  
  .team-member-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--color-dark);
  }
  
  .team-member-role {
    color: var(--color-coral);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
  }
  
  .team-member-info p {
    color: var(--color-grey);
    line-height: 1.6;
  }
  
  @media (max-width: 968px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Programmes Page */
  .programmes-hero {
    background: linear-gradient(135deg, var(--color-teal) 0%, #04BF8A 100%);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  
  .programmes-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
  }
  
  .programmes-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  .programme-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    transition: all var(--transition-base);
  }
  
  .programme-card:hover {
    box-shadow: var(--shadow-lg);
  }
  
  .programme-header {
    background: var(--color-coral);
    color: white;
    padding: var(--space-xl);
  }
  
  .programme-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }
  
  .programme-header p {
    font-size: 1.125rem;
    opacity: 0.95;
  }
  
  .programme-body {
    padding: var(--space-xl);
  }
  
  .programme-body h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .programme-body h3:first-child {
    margin-top: 0;
  }
  
  .programme-body ul {
    list-style: none;
    display: grid;
    gap: var(--space-sm);
  }
  
  .programme-body li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--color-grey);
    line-height: 1.6;
  }
  
  .programme-body li::before {
    content: '✓';
    color: var(--color-teal);
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .programme-card:nth-child(even) .programme-header {
    background: var(--color-purple);
  }
  
  /* Updates Page */
  .updates-hero {
    background: linear-gradient(135deg, var(--color-amber) 0%, #FFA500 100%);
    color: var(--color-dark);
    text-align: center;
    padding: var(--space-3xl) 0;
  }
  
  .updates-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
  }
  
  .updates-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .updates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .update-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }
  
  .update-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .update-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .update-content {
    padding: var(--space-lg);
  }
  
  .update-date {
    color: var(--color-coral);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
  }
  
  .update-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
  }
  
  .update-content p {
    color: var(--color-grey);
    line-height: 1.6;
  }
  
  @media (max-width: 968px) {
    .updates-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Contact Page */
  .contact-hero {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0E7C9C 100%);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  
  .contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
  }
  
  .contact-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
  
  .contact-info {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--color-dark);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-coral);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .contact-item-content h3 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-dark);
  }
  
  .contact-item-content p {
    color: var(--color-grey);
    line-height: 1.6;
  }
  
  .contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--color-dark);
  }
  
  .map-container {
    margin-top: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
  }
  
  @media (max-width: 968px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  }
  
  /* Thanks Page */
  .thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-teal) 0%, #04BF8A 100%);
    color: white;
  }
  
  .thanks-content {
    max-width: 600px;
  }
  
  .thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--space-lg);
    backdrop-filter: blur(10px);
  }
  
  .thanks-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
  }
  
  .thanks-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
  }
  
  /* Legal Pages */
  .legal-hero {
    background: var(--color-dark);
    color: white;
    text-align: center;
    padding: var(--space-2xl) 0;
  }
  
  .legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
  }
  
  .legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: calc(var(--space-2xl) * -1);
    position: relative;
  }
  
  .legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-dark);
  }
  
  .legal-content h2:first-child {
    margin-top: 0;
  }
  
  .legal-content h3 {
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
  }
  
  .legal-content p {
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
  
  .legal-content ul {
    list-style: disc;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .legal-content li {
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
  }
  
  .last-updated {
    font-style: italic;
    color: var(--color-grey);
    margin-bottom: var(--space-lg);
  }
  
  /* Footer */
  .footer {
    background: var(--color-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: auto;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
  }
  
  .footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
  }
  
  .footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  .footer-links h4 {
    font-weight: 600;
    margin-bottom: var(--space-md);
  }
  
  .footer-links ul {
    display: grid;
    gap: var(--space-sm);
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
  }
  
  @media (max-width: 968px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
  }
  
  /* Cookie Consent */
  .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: var(--space-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
  }
  
  .cookie-consent.active {
    transform: translateY(0);
  }
  
  .cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
  }
  
  .cookie-consent p {
    color: var(--color-grey);
    line-height: 1.6;
  }
  
  .cookie-consent a {
    color: var(--color-coral);
    text-decoration: underline;
  }
  
  .cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
  }
  
  .cookie-buttons .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
  }
  
  @media (max-width: 768px) {
    .cookie-consent-content {
      flex-direction: column;
      align-items: stretch;
    }
    
    .cookie-buttons {
      flex-direction: column;
    }
  }
  
  .cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    padding: var(--space-lg);
    overflow-y: auto;
  }
  
  .cookie-settings-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cookie-settings-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 600px;
    width: 100%;
  }
  
  .cookie-settings-content h2 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-lg);
  }
  
  .cookie-category {
    padding: var(--space-md);
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
  }
  
  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
  }
  
  .cookie-category h3 {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .cookie-category p {
    color: var(--color-grey);
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
  }
  
  .cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-light-grey);
    transition: var(--transition-base);
    border-radius: 26px;
  }
  
  .cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: var(--transition-base);
    border-radius: 50%;
  }
  
  .cookie-toggle input:checked + .cookie-slider {
    background: var(--color-teal);
  }
  
  .cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
  }
  
  .cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .cookie-settings-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
}

@layer utilities {
  .text-center {
    text-align: center;
  }
  
  .mt-lg {
    margin-top: var(--space-lg);
  }
  
  .mb-lg {
    margin-bottom: var(--space-lg);
  }
  
  .hidden {
    display: none;
  }
}