/* =========================================
   CSS Variables and Base Styles
   ========================================= */
:root {
  /* Primary Corporate Color Scheme - Split-Complementary */
  --primary: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light: #fbbf24;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #34d399;
  
  /* Neutral Colors */
  --dark: #1f2937;
  --dark-medium: #374151;
  --medium: #6b7280;
  --light-medium: #9ca3af;
  --light: #f3f4f6;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-dark));
  --gradient-hero: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  /* 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-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =========================================
   Global Styles & Reset
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

/* =========================================
   Buttons
   ========================================= */
.button, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-sm);
}

.button:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button:active, button:active, input[type="submit"]:active {
  transform: translateY(0);
}

.button.is-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.button.is-primary:hover {
  background: var(--primary-dark);
}

.button.is-light {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

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

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

.button.is-primary.is-outlined:hover {
  background-color: var(--primary);
  color: var(--white);
}

.buttons {
  display: flex;
  gap: var(--spacing-md);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 700;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-item {
  padding: 0.5rem 1rem;
  color: var(--dark);
  font-weight: 600;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary);
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: 0;
}

.navbar-burger span:nth-child(2) {
  top: 8px;
}

.navbar-burger span:nth-child(3) {
  top: 16px;
}

.navbar-burger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

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

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-body {
  width: 100%;
  padding: var(--spacing-xxl) 0;
  z-index: 1;
  background-color: #6b7280;
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero p {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.2rem;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero .buttons {
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

/* =========================================
   Methodology Section
   ========================================= */
.section {
  padding: var(--spacing-xxl) 0;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  position: relative;
  text-align: center;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.accordion-container {
  margin-top: var(--spacing-lg);
}

.accordion {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
}

.accordion-header {
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

.accordion-header h3 {
  margin-bottom: 0;
}

.accordion-header .icon {
  transition: transform var(--transition-normal);
}

.accordion-header.is-active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0 var(--spacing-lg);
}

.accordion-content p {
  padding: var(--spacing-md) 0;
}

.stats-container {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-widget {
  padding: var(--spacing-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

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

.stat-widget h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

/* =========================================
   History Section
   ========================================= */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: var(--radius-sm);
}

.timeline-item {
  padding: var(--spacing-md);
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-marker {
  position: absolute;
  top: 24px;
  right: -8px;
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -8px;
}

.timeline-content {
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.timeline-content:hover {
  transform: scale(1.03);
}

.testimonial {
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: var(--font-heading);
}

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

.testimonial footer {
  text-align: right;
  font-weight: 600;
}

/* =========================================
   Team Section
   ========================================= */
.team-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.team-card .card-content {
  padding: var(--spacing-lg);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card .title {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.team-card .subtitle {
  color: var(--medium);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

/* =========================================
   Community Section
   ========================================= */
.gallery-container {
  margin-top: var(--spacing-xl);
}

.image-container {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.image-container:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

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

/* =========================================
   Innovation Section
   ========================================= */
.info-card {
  height: 100%;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.info-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.icon-placeholder {
  font-size: 2rem;
}

/* =========================================
   Resources Section
   ========================================= */
.resource-card {
  height: 100%;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.resource-card .title {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

/* =========================================
   Contact Section
   ========================================= */
.contact-form-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
}

.contact-form-card .card-content {
  padding: var(--spacing-xl);
}

.field {
  margin-bottom: var(--spacing-lg);
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.input, .textarea, .select select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.select {
  position: relative;
  display: block;
  width: 100%;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
}

.contact-info-card {
  height: 100%;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--white);
  font-size: 1.5rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--spacing-xl) 0;
}

.footer .title {
  color: var(--white);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--light);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

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

.footer-links a[href*="facebook"]::before,
.footer-links a[href*="twitter"]::before,
.footer-links a[href*="instagram"]::before,
.footer-links a[href*="linkedin"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-links a[href*="facebook"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" fill="%23f3f4f6"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg>');
}

.footer-links a[href*="twitter"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23f3f4f6"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>');
}

.footer-links a[href*="instagram"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%23f3f4f6"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

.footer-links a[href*="linkedin"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%23f3f4f6"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"/></svg>');
}

.copyright {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--dark-medium);
}

/* =========================================
   Cookie Consent
   ========================================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: var(--spacing-lg);
  z-index: 1000;
  display: none;
  box-shadow: var(--shadow-lg);
}

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

.cookie-content p {
  margin-bottom: 0;
  margin-right: var(--spacing-lg);
}

/* =========================================
   Card Styles
   ========================================= */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--white);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.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(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.card .title {
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

/* =========================================
   Additional Pages Styles
   ========================================= */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg);
}

.success-content {
  max-width: 800px;
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.privacy-page, .terms-page {
  padding-top: 100px;
}

/* =========================================
   Responsive Styles
   ========================================= */
@media (max-width: 1023px) {
  .container {
    padding: 0 var(--spacing-lg);
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-md);
  }

  .navbar-menu.is-active {
    display: flex;
  }

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

  .navbar-burger {
    display: block;
  }

  .hero .title {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.5rem;
  }

  .timeline-container::after {
    left: 40px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-marker {
    left: 32px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    left: 32px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero .title {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.2rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate__fadeInUp {
  animation: fadeInUp 1s ease;
}

.animate__fadeIn {
  animation: fadeIn 1s ease;
}

@media (max-width: 768px) {
  .navbar-brand{
    width: 100%;
  }
}
.navbar-burger{
  display: none !important;
}