/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

/* CSS Variables - Updated for Dark Theme */
:root {
  /* Charcoal & Gray Palette */
  --charcoal-dark: #1a1f25;
  --charcoal: #2a3038;
  --charcoal-light: #3a424d;
  --gray-dark: #4a5461;
  --gray: #6b7785;
  --gray-light: #8b98a8;
  --gray-lighter: #b4bfcd;
  
  /* Orange Accent Colors */

  /*
  original orange colours:
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --orange-light: #ff8554;
    --orange-glow: rgba(255, 107, 53, 0.3);
  */
  --orange: #ff8c42;
  --orange-dark: #f57c32;
  --orange-light: #ffa866;
  --orange-glow: rgba(255, 140, 66, 0.3);
  
  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e8ecf0;
  --text-muted: #a8b2c1;
  --text-primary: #ffffff;
  
  /* Supporting Colors */
  --success: #4ade80;
  --warning: #fbbf24;
  --error: #ef4444;
  
  /* Backgrounds */
  --background: #1a1f25;
  --alt-background: #2a3038;
  --alt2-background: #3a424d;
  
  /* Updated color mappings for existing components */
  --text-color: #e8ecf0;
  --primary: #ff6b35;
  --secondary: #ff8554;
  --accent-color: #ff6b35;
  --button-color: #ff6b35;
  --button-hover-color: #e55a2b;
  
  /* Fonts */
  --title-font: 'Inter', 'Segoe UI', sans-serif;
  --alt-title-font: 'Inter', 'Noto Sans', sans-serif;
  --subtitle-font: 'Inter', 'Segoe UI', sans-serif;
  --primary-font: 'Inter', 'Segoe UI', sans-serif;
  --small-font: 'Inter', 'Abel', sans-serif;
}

/* Base Typography */
body {
  font-family: var(--primary-font);
  min-height: 100vh;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: var(--title-font);
  font-weight: 800;
  text-align: center;
  color: var(--text-white);
}

h2, h3, h4 {
  font-family: var(--alt-title-font);
  font-weight: 700;
  color: var(--text-white);
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}
h2 { 
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

p {
  margin:       1em auto;
  line-height:  1.7;
  font-size:    1.3625rem;
  text-align:   left;
  color:        var(--text-light);
}

/* Global Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Global Button Styles - Updated for Orange Theme */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 1.25rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px -15px var(--orange-glow);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -15px var(--orange-glow);
}

.cta-button:hover::before {
  left: 100%;
}

/* Form Styles (Global) */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-white);
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-white);
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Section Spacing */
section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: clamp(2rem, 6vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  p {
    font-size: 1rem;
  }
}

/* Global Utilities */
img {
  max-width: 100%;
  height: auto;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--orange);
  color: white;
}

::-moz-selection {
  background: var(--orange);
  color: white;
}.page[data-astro-cid-sckkx6r4]{margin:3em auto;padding:0;min-height:100vh}