:root {
  /* Primary Colors - Split-Complementary Scheme */
  --primary-color: #4B6FFC;
  --primary-dark: #3054DB;
  --primary-light: #7A94FF;
  --secondary-color: #FF7A4B;
  --secondary-dark: #E85F30;
  --secondary-light: #FFA07A;
  --tertiary-color: #4BFF9F;
  --tertiary-dark: #30E88A;
  --tertiary-light: #7AFFC3;
  
  /* Neutral Colors */
  --dark: #222222;
  --dark-medium: #444444;
  --medium: #777777;
  --light-medium: #BBBBBB;
  --light: #F5F7FA;
  --white: #FFFFFF;
  
  /* Font Families */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ------------ Base Styles ------------ */
body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

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

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--dark);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto 1.5rem;
  border-radius: var(--border-radius-sm);
}

.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--medium);
}

.section-padding {
  padding: 5rem 0;
}

/* ------------ Header ------------ */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  z-index: 1000;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.header .navbar-brand img {
  height: 50px;
  width: auto;
  transition: all var(--transition-medium);
}

.header .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
  position: relative;
}

.header .navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-medium);
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header .navbar-nav .nav-link:hover:after,
.header .navbar-nav .nav-link.active:after {
  width: 80%;
}

/* Burger Menu */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(75, 111, 252, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ------------ Hero Section ------------ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -76px; /* Adjust based on your header height */
  padding-top: 76px;
}

.hero-content {
  padding: 2rem 0;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ------------ Button Styles ------------ */
.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width var(--transition-medium);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Read More Links */
.btn-link {
  position: relative;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.25rem 0;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

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

.btn-link:hover::after {
  width: 100%;
}

/* ------------ About Section ------------ */
.about-section {
  background-color: var(--white);
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.about-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-medium);
}

/* Timeline */
.timeline-container {
  margin-top: 3rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  top: 0.5rem;
  box-shadow: 0 0 0 4px rgba(255, 122, 75, 0.2);
}

.timeline-content {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.timeline-content h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.timeline-date {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--medium);
  margin-top: 0.5rem;
}

/* Horizontal Timeline */
.horizontal-timeline {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2rem 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.horizontal-timeline::-webkit-scrollbar {
  height: 8px;
}

.horizontal-timeline::-webkit-scrollbar-track {
  background: var(--light-medium);
  border-radius: 4px;
}

.horizontal-timeline::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.horizontal-timeline .timeline-item {
  flex: 0 0 280px;
  margin-right: 2rem;
  padding-bottom: 0;
}

.horizontal-timeline::before {
  display: none;
}

.horizontal-timeline .timeline-dot {
  left: 140px;
  top: -1rem;
}

.horizontal-timeline .timeline-content {
  margin-top: 1.5rem;
  text-align: center;
}

/* ------------ Features Section ------------ */
.features-section {
  background-color: var(--light);
}

.feature-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-text {
  color: var(--dark-medium);
  margin-bottom: 1.5rem;
}

.card-body .btn {
  margin-top: auto;
}

/* ------------ Research Section ------------ */
.research-section {
  background-color: var(--white);
}

.research-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.research-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.research-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-medium);
}

.research-finding {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-medium);
}

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

.research-finding h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* ------------ Resources Section ------------ */
.resources-section {
  background-color: var(--light);
}

.resource-card {
  border: none;
  border-radius: var(--border-radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-card .card-title {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.resource-card .card-text {
  color: var(--dark-medium);
  margin-bottom: 1rem;
}

/* ------------ Statistics Section ------------ */
.statistics-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.stat-item {
  text-align: center;
  margin-bottom: 2rem;
}

.stat-icon {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium);
}

.stat-item:hover .stat-icon {
  transform: rotateY(180deg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.stat-card {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  height: 100%;
}

.stat-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.platform-stats, .demographic-stats {
  margin-top: 1.5rem;
}

.platform-stat, .demographic-item {
  margin-bottom: 1rem;
}

.platform-bar {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.platform-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
  border-radius: 4px;
}

.platform-label, .demographic-item {
  display: flex;
  justify-content: space-between;
}

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

.event-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.event-card .card-image {
  position: relative;
}

.event-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
}

.event-month {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.event-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

/* ------------ Success Stories Section ------------ */
.success-section {
  background-color: var(--light);
}

.success-card {
  border: none;
  border-radius: var(--border-radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.success-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.success-card .card-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ------------ Press Section ------------ */
.press-section {
  background-color: var(--white);
}

.press-card {
  border: none;
  border-radius: var(--border-radius-lg);
  background-color: var(--light);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.press-quote {
  position: relative;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  transform: translateY(-50%);
}

.press-quote p {
  font-style: italic;
  color: var(--dark);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.press-source {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.press-source img {
  margin-right: 1rem;
}

.press-source h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.press-source p {
  margin-bottom: 0;
  color: var(--medium);
  font-size: 0.875rem;
}

.press-coverage-timeline {
  margin-top: 3rem;
  padding: 2rem 0;
}

/* ------------ Contact Section ------------ */
.contact-section {
  background-color: var(--white);
  position: relative;
}

.contact-info {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-text p {
  margin-bottom: 0;
  color: var(--dark-medium);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form .form-label {
  color: var(--dark);
  font-weight: 500;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 0.75rem;
  border: 1px solid var(--light-medium);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(75, 111, 252, 0.25);
}

/* ------------ Footer Section ------------ */
.footer-section {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-sm);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
  display: block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  padding: 0.75rem;
  height: auto;
}

.footer-newsletter .form-control::placeholder {
  color: var(--light-medium);
}

.footer-newsletter .btn {
  padding: 0.75rem 1.5rem;
}

.social-links a {
  color: var(--light-medium);
  margin-right: 1.5rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--light-medium);
}

/* ------------ Success Page ------------ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  padding: 2rem 0;
}

.success-container {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.success-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-message {
  font-size: 1.2rem;
  color: var(--dark-medium);
  margin-bottom: 2rem;
}

/* ------------ Privacy & Terms Pages ------------ */
.page-content {
  padding-top: 120px;
  padding-bottom: 5rem;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.page-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.page-content p,
.page-content ul,
.page-content ol {
  margin-bottom: 1.5rem;
  color: var(--dark-medium);
}

/* ------------ Cookie Consent ------------ */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
}

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

/* ------------ Image Container ------------ */
.image-container {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* ------------ Parallax Effects ------------ */
.parallax-section {
  background-attachment: fixed;
  position: relative;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

/* Delay animations for children */
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}

/* ------------ Media Queries ------------ */
@media (max-width: 1199px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .horizontal-timeline {
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content button {
    align-self: flex-end;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .timeline-dot {
    width: 0.75rem;
    height: 0.75rem;
    left: -1.75rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .press-source {
    flex-direction: column;
    text-align: center;
  }
  
  .press-source img {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}