:root {
  /* Color System */
  --color-primary: #0055FF;
  --color-primary-dark: #0044CC;
  --color-primary-light: #3377FF;
  
  --color-secondary: #111111;
  --color-secondary-dark: #000000;
  --color-secondary-light: #333333;
  
  --color-accent: #FF3300;
  --color-accent-dark: #CC2900;
  --color-accent-light: #FF5533;
  
  --color-grey-100: #F8F9FA;
  --color-grey-200: #E9ECEF;
  --color-grey-300: #DEE2E6;
  --color-grey-400: #CED4DA;
  --color-grey-500: #ADB5BD;
  --color-grey-600: #6C757D;
  --color-grey-700: #495057;
  --color-grey-800: #343A40;
  --color-grey-900: #212529;
  
  --color-white: #FFFFFF;
  --color-black: #000000;
  
  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 5rem;
  --space-8: 8rem;
  
  /* Borders */
  --border-radius-sm: 0.125rem;
  --border-radius-md: 0.25rem;
  --border-radius-lg: 0.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-brutal: 6px 6px 0 var(--color-black);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container widths */
  --container-max-width: 1200px;
  --container-padding: 1rem;
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-grey-800);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-4);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-4);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}

/* Section styles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-5);
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-6);
  font-size: 1.1rem;
  color: var(--color-grey-700);
}

/* Button styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
  box-shadow: var(--shadow-brutal);
  position: relative;
  top: 0;
  left: 0;
}

.btn:hover, button:hover, input[type='submit']:hover {
  top: -3px;
  left: -3px;
  box-shadow: 9px 9px 0 var(--color-black);
}

.btn:active, button:active, input[type='submit']:active {
  top: 0;
  left: 0;
  box-shadow: 3px 3px 0 var(--color-black);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
  display: block;
}

/* Header styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
  padding: 1rem 0;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0;
  color: var(--color-primary);
}

.main-navigation {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}

.nav-links li {
  margin-left: var(--space-4);
}

.nav-links a {
  color: var(--color-grey-800);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover:before {
  width: 100%;
}

.mobile-menu-toggle {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-secondary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition-fast);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-menu-toggle:hover span {
  background: var(--color-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--space-3);
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-5);
  color: var(--color-white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: slight-scale 25s infinite alternate ease-in-out;
}

@keyframes slight-scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Features Section */
.features-section {
  padding: var(--space-7) 0;
  background-color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
  transition: transform var(--transition-normal);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--color-black);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-4);
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}

.feature-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.feature-specs span {
  background-color: var(--color-grey-200);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Statistics Section */
.statistics-section {
  padding: var(--space-7) 0;
  background-color: var(--color-grey-100);
  position: relative;
  overflow: hidden;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.statistic-item {
  text-align: center;
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-normal);
}

.statistic-item:hover {
  transform: translateY(-10px);
}

.statistic-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
}

.statistic-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-grey-700);
}

.statistics-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.statistics-detail img {
  max-width: 100%;
  height: auto;
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
}

.statistics-text {
  padding: var(--space-4);
}

.statistics-text h3 {
  margin-bottom: var(--space-3);
}

/* Pricing Section */
.pricing-section {
  padding: var(--space-7) 0;
  background-color: var(--color-white);
}

.pricing-toggles {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.toggle {
  position: relative;
  cursor: pointer;
}

.toggle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.toggle span {
  display: block;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-grey-200);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.toggle input:checked + span {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.pricing-plan {
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  padding: var(--space-4);
  position: relative;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pricing-plan:hover {
  transform: translateY(-10px);
}

.pricing-plan.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-plan.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-tag {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-grey-300);
}

.pricing-header h3 {
  margin-bottom: var(--space-2);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.pricing-amount .period {
  font-size: 1.1rem;
  color: var(--color-grey-600);
  margin-left: 0.25rem;
}

.pricing-features {
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.pricing-features ul {
  list-style-type: none;
  margin-bottom: 0;
}

.pricing-features li {
  padding: var(--space-2) 0;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li:before {
  content: '✓';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-footer {
  text-align: center;
}

.pricing-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--color-grey-600);
}

/* Insights Section */
.insights-section {
  padding: var(--space-7) 0;
  background-color: var(--color-grey-100);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.insight-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.insight-card:hover {
  transform: translateY(-10px);
}

.insight-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--color-black);
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-content {
  padding: var(--space-4);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.insight-content h3 {
  margin-bottom: var(--space-3);
}

.insight-meta {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--color-grey-600);
}

/* Resources Section */
.resources-section {
  padding: var(--space-7) 0;
  background-color: var(--color-white);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-10px);
  text-decoration: none;
}

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-3);
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resource-card h3 {
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.resource-card p {
  margin-bottom: 0;
  color: var(--color-grey-700);
}

/* Behind the Scenes Section */
.behind-scenes-section {
  padding: var(--space-7) 0;
  background-color: var(--color-grey-100);
}

.behind-scenes-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.behind-scenes-image {
  flex: 1;
}

.behind-scenes-image img {
  width: 100%;
  height: auto;
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
}

.behind-scenes-text {
  flex: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-grey-200);
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-family: var(--font-heading);
  line-height: 1;
}

.process-step h4 {
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.process-step p {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Events Section */
.events-section {
  padding: var(--space-7) 0;
  background-color: var(--color-white);
}

.events-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.event-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--color-black);
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-content {
  padding: var(--space-4);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-date {
  position: absolute;
  top: -30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius-md);
  text-align: center;
  z-index: 1;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-content h3 {
  margin-bottom: var(--space-2);
}

.event-location {
  font-size: 0.9rem;
  color: var(--color-grey-600);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
}

.event-location:before {
  content: '📍';
  margin-right: 0.5rem;
}

.event-description {
  flex-grow: 1;
}

/* FAQ Section */
.faq-section {
  padding: var(--space-7) 0;
  background-color: var(--color-grey-100);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: var(--space-3);
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: var(--space-4);
  text-align: left;
  background: none;
  border: none;
  box-shadow: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-icon:before,
.accordion-icon:after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.accordion-icon:before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-icon:after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion-header.active .accordion-icon:after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  padding: 0 var(--space-4) var(--space-4);
  display: none;
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid var(--color-grey-300);
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Contact Section */
.contact-section {
  padding: var(--space-7) 0;
  background-color: var(--color-white);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form-wrapper {
  flex: 1;
}

.contact-form {
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--color-grey-300);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-right: var(--space-2);
  margin-top: 6px;
}

.form-checkbox label {
  margin-bottom: 0;
}

.contact-info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.contact-card {
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
}

.contact-card h3 {
  margin-bottom: var(--space-3);
}

.contact-map {
  border: 3px solid var(--color-black);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: auto;
}

/* Footer */
.site-footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-6) 0 var(--space-4);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-logo h2 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.footer-logo p {
  color: var(--color-grey-400);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.footer-links-column h3 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
  font-size: 1.2rem;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column ul li {
  margin-bottom: var(--space-2);
}

.footer-links-column ul li a {
  color: var(--color-grey-400);
  transition: color var(--transition-fast);
}

.footer-links-column ul li a:hover {
  color: var(--color-primary);
}

.social-links li a {
  display: flex;
  align-items: center;
}

.social-links li a:before {
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.social-links li:nth-child(1) a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230055FF'%3E%3Cpath d='M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(2) a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230055FF'%3E%3Cpath d='M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(3) a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230055FF'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(4) a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230055FF'%3E%3Cpath d='M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(5) a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230055FF'%3E%3Cpath d='M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z'/%3E%3C/svg%3E");
}

.footer-newsletter {
  max-width: 400px;
}

.footer-newsletter h3 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
  font-size: 1.2rem;
}

.footer-newsletter p {
  color: var(--color-grey-400);
  margin-bottom: var(--space-3);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.newsletter-form input {
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-grey-800);
}

.footer-bottom p {
  margin-bottom: var(--space-2);
  font-size: 0.9rem;
  color: var(--color-grey-500);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-5);
}

.success-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--space-6);
}

/* Media Queries */
@media (min-width: 576px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-plan.featured {
    grid-column: span 2;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .main-navigation {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .statistics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .statistics-detail {
    flex-direction: row;
  }
  
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .resources-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .behind-scenes-content {
    flex-direction: row;
  }
  
  .events-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    flex-direction: row;
  }
  
  .footer-content {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-plans {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-plan.featured {
    grid-column: auto;
  }
  
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .events-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}
.mobile-menu-toggle{
  display: none;
}