:root {
  /* Primary Colors */
  --primary-color: #3d5af1;
  --primary-light: #5e78ff;
  --primary-dark: #2a3cb2;
  
  /* Secondary Colors */
  --secondary-color: #ff4b8e;
  --secondary-light: #ff6ca5;
  --secondary-dark: #d92e6e;
  
  /* Tertiary Colors */
  --tertiary-color: #22daac;
  --tertiary-light: #4ff3c5;
  --tertiary-dark: #18a683;
  
  /* Background Colors */
  --background-dark: #0f0f13;
  --background-dark-blue: #151525;
  --background-dark-purple: #201835;
  
  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-grey: #a0a0a0;
  --text-dark: #333333;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 6px 25px rgba(0, 0, 0, 0.2);
  --shadow-hard: 0 10px 35px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== Base Styles ===== */
html, body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

p {
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-light);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--tertiary-light);
}

.title {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

.subtitle {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

/* ===== Layout & Containers ===== */
.section {
  padding: var(--spacing-xl) 0;
}

.container {
  padding: 0 var(--spacing-md);
}

.has-background-dark-blue {
  background-color: var(--background-dark-blue);
}

.has-background-dark-purple {
  background-color: var(--background-dark-purple);
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-medium);
}

.navbar {
  background-color: rgba(15, 15, 19, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.navbar-item {
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-light) !important;
  background-color: transparent !important;
}

.navbar-burger {
  color: var(--text-white);
}

.navbar-burger:hover {
  background-color: transparent;
}

.navbar-burger span {
  height: 2px;
  width: 20px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  margin-top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* z-index: -2; */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 15, 19, 0.9), rgba(32, 24, 53, 0.7));
  /* z-index: -1; */
}

.hero-body {
  width: 100%;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-md);
  color: var(--text-white) !important;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-md);
  color: var(--text-white) !important;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: var(--spacing-lg);
  color: var(--text-white) !important;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  z-index: 2;
}

/* Progress Indicators */
.progress-container {
  width: 100%;
  margin-top: var(--spacing-md);
}

.progress-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.progress-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--text-grey);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.progress-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-medium);
}

.progress-indicator.active {
  color: var(--text-white);
  border-color: var(--primary-light);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(94, 120, 255, 0.5);
}

.progress-indicator.active::before {
  opacity: 1;
}

.progress-labels {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.progress-label {
  width: 60px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-grey);
  transition: color var(--transition-medium);
}

.progress-label.active {
  color: var(--text-white);
  font-weight: 500;
}

/* ===== Button Styles ===== */
.button {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: transparent;
}

.button.is-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(61, 90, 241, 0.3);
}

.button.is-outlined {
  border-width: 2px;
}

.button.is-outlined.is-white {
  border-color: var(--text-white);
  color: var(--text-white);
}

.button.is-outlined.is-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.neo-button {
  position: relative;
  overflow: hidden;
  border: 3px solid;
  font-weight: 700;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.neo-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: -1;
}

.neo-button:hover::before {
  opacity: 1;
}

.neo-button:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* ===== Our Process Section ===== */
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg) 0;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--tertiary-color));
  border-radius: 4px;
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(94, 120, 255, 0.3);
  z-index: 2;
}

.timeline-content {
  width: 40%;
  padding: var(--spacing-md);
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  transition: transform var(--transition-medium);
}

.timeline-content:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: var(--shadow-hard);
}

.timeline-image {
  width: 40%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  transform-style: preserve-3d;
  transition: transform var(--transition-medium);
}

.timeline-image:hover {
  transform: translateY(-10px) rotateY(-5deg);
  box-shadow: var(--shadow-hard);
}

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

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

.timeline-title {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: var(--spacing-sm);
}

.timeline-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Innovation Section ===== */
.innovation-card {
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.innovation-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content .title {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

.card-content p {
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* ===== Portfolio Section ===== */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--spacing-md) 0;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-medium);
}

.carousel-item {
  min-width: 100%;
  padding: 0 var(--spacing-md);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.portfolio-content {
  padding: var(--spacing-md);
}

.portfolio-content .title {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-white);
}

.portfolio-content .subtitle {
  font-size: 1.1rem;
  color: var(--tertiary-light);
  margin-bottom: var(--spacing-sm);
}

.portfolio-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.carousel-prev,
.carousel-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

/* ===== Webinars Section ===== */
.webinar-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.webinar-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.webinar-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.webinar-date {
  color: var(--tertiary-light);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.webinar-content .title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

.webinar-content p {
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--spacing-md);
}

/* ===== Resources Section ===== */
.resource-card {
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.resource-card .title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.resource-card .title a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.resource-card .title a:hover {
  color: var(--primary-light);
}

.resource-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

/* ===== Events Section ===== */
.event-card {
  display: flex;
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.event-date {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  color: var(--text-white);
  font-family: 'Archivo Black', sans-serif;
}

.event-date .month {
  font-size: 1.2rem;
  font-weight: 700;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin: 5px 0;
}

.event-date .year {
  font-size: 1rem;
}

.event-content {
  padding: var(--spacing-md);
  flex: 1;
}

.event-content .title {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-white);
}

.location {
  color: var(--tertiary-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.location i {
  margin-right: 5px;
}

.event-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

/* ===== Press Section ===== */
.press-card {
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.press-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.press-logo img {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
}

.press-quote {
  color: var(--text-light);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
}

.press-quote::before,
.press-quote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  line-height: 0;
}

.press-quote::before {
  top: 0.5rem;
  left: -1rem;
}

.press-quote::after {
  bottom: -0.5rem;
  right: -1rem;
}

/* ===== Careers Section ===== */
.career-card {
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.career-card .title {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-white);
}

.location {
  color: var(--tertiary-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.career-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex: 1;
}

/* ===== Contact Section ===== */
.contact-form-container {
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.label {
  color: var(--text-white);
  margin-bottom: var(--spacing-xs);
}

.neo-input,
.neo-textarea,
.neo-select {
  background-color: rgba(15, 15, 19, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  margin-bottom: var(--spacing-md);
}

.neo-input:focus,
.neo-textarea:focus,
.neo-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(61, 90, 241, 0.3);
  outline: none;
}

.neo-input::placeholder,
.neo-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.checkbox {
  margin-right: var(--spacing-xs);
}

/* ===== Footer ===== */
.footer {
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .title {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

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

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer ul li a {
  color: var(--text-grey-lighter);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.social-links a {
  display: inline-block;
  margin-right: var(--spacing-md);
  color: var(--text-grey-lighter);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ===== Cookie Popup ===== */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 50, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: var(--spacing-md);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-content p {
  color: var(--text-white);
  margin: 0;
  padding-right: var(--spacing-md);
}

.cookie-button {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--transition-fast);
}

.cookie-button:hover {
  background-color: var(--primary-light);
}

/* ===== Animation Styles ===== */
[data-animation] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animation].animated {
  opacity: 1;
  transform: translateY(0);
}

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

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: var(--spacing-md);
}

.success-page .title {
  margin-bottom: var(--spacing-sm);
}

.success-page .subtitle {
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

/* ===== Privacy & Terms Pages ===== */
.content-page {
  padding-top: 100px;
}

.content-page .container {
  background-color: rgba(30, 30, 50, 0.7);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-page h1 {
  margin-bottom: var(--spacing-lg);
}

.content-page h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.content-page p {
  margin-bottom: var(--spacing-md);
}

.content-page ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.content-page li {
  margin-bottom: var(--spacing-xs);
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    margin-left: 60px;
  }
  
  .timeline-marker {
    left: 30px;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .timeline-content, 
  .timeline-image {
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    padding: var(--spacing-sm);
    flex-direction: row;
    min-width: auto;
    width: 100%;
  }
  
  .event-date .month,
  .event-date .day,
  .event-date .year {
    margin: 0 5px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: var(--spacing-sm);
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .progress-indicators {
    gap: var(--spacing-sm);
  }
  
  .progress-indicator {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .timeline-image {
    height: 250px;
  }
  
  .portfolio-image {
    height: 250px;
  }
  
  .webinar-image {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .progress-indicator {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .progress-label {
    font-size: 0.8rem;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .timeline-image {
    height: 200px;
  }
  
  .contact-form-container {
    padding: var(--spacing-md);
  }
}