:root {
  /* Основная цветовая схема (раздельно-дополнительная) */
  --primary-color: #ff6347; /* Яркий оранжево-красный */
  --primary-dark: #d93f29; /* Темный оранжево-красный */
  --primary-light: #ff8b7a; /* Светлый оранжево-красный */
  
  --secondary-color: #3498db; /* Яркий синий */
  --secondary-dark: #2980b9; /* Темный синий */
  --secondary-light: #5dade2; /* Светлый синий */
  
  --accent-color: #9b59b6; /* Фиолетовый акцент */
  --accent-dark: #8e44ad; /* Темный фиолетовый */
  
  --neutral-dark: #333333; /* Темный нейтральный */
  --neutral-medium: #666666; /* Средний нейтральный */
  --neutral-light: #f5f5f5; /* Светлый нейтральный */
  
  --success-color: #2ecc71; /* Зеленый для успеха */
  --danger-color: #e74c3c; /* Красный для ошибок */
  --warning-color: #f39c12; /* Оранжевый для предупреждений */
  
  /* Шрифты */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Размеры */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  /* Тени */
  --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 10px 25px rgba(0, 0, 0, 0.2);
  
  /* Необрутализм */
  --brutalism-shadow: 8px 8px 0 0 var(--neutral-dark);
  --brutalism-border: 3px solid var(--neutral-dark);
}

/* ===== Базовые стили ===== */
html, body {
  font-family: var(--body-font);
  color: var(--neutral-dark);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

section {
  padding: 80px 0;
  position: relative;
}

/* ===== Кнопки ===== */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 0 var(--neutral-dark);
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translate(8px, 8px);
  box-shadow: none;
}

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

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 3px solid white;
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.3);
}

.btn-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: none;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
  text-transform: none;
}

.btn-link:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-dark);
  box-shadow: none;
  transform: none;
}

.btn-link:hover:after {
  transform: translateX(4px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  box-shadow: 6px 6px 0 0 var(--primary-dark);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 3px 3px 0 0 var(--primary-dark);
}

/* ===== Хедер ===== */
.header {
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.75rem;
  color: white;
  letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover:before {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 2px solid white;
  padding: 0.5rem;
}

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

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 120px 0 60px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

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

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

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

/* ===== Statistics Section ===== */
.statistics-section {
  background-color: var(--neutral-light);
  padding: 80px 0;
}

.stat-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 0 0 var(--neutral-dark);
}

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

.stat-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--neutral-dark);
}

.statistics-description {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Research Section ===== */
.research-section {
  background-color: white;
  padding: 80px 0;
}

.research-card {
  border: var(--brutalism-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 0 0 var(--neutral-dark);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.card-content p {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ===== Success Stories Section ===== */
.success-stories-section {
  background-color: var(--neutral-light);
  padding: 80px 0;
}

.success-story-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  transition: all 0.3s ease;
}

.success-story-card .image-container {
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.success-story-card .card-content {
  padding: 2rem;
}

.success-story-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.client-position {
  font-size: 1rem;
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.success-description {
  margin-bottom: 1.5rem;
  color: var(--neutral-medium);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* ===== Press Section ===== */
.press-section {
  background-color: white;
  padding: 80px 0;
}

.press-card {
  background-color: var(--neutral-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 0 0 var(--neutral-dark);
}

.press-logo {
  margin-bottom: 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.press-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
  font-weight: 700;
}

.press-date {
  font-size: 0.9rem;
  color: var(--neutral-medium);
  margin-bottom: 1rem;
}

.press-excerpt {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ===== External Resources Section ===== */
.external-resources-section {
  background-color: var(--neutral-light);
  padding: 80px 0;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.resource-card .card-image {
  height: 200px;
}

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

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.resource-card p {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-link {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.resource-link:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.resource-link:hover {
  color: var(--secondary-dark);
}

.resource-link:hover:after {
  transform: translateX(4px);
}

/* ===== Events Section ===== */
.events-section {
  background-color: white;
  padding: 80px 0;
}

.event-card {
  display: flex;
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 0 0 var(--neutral-dark);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  min-width: 100px;
  text-align: center;
}

.event-date .day {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--heading-font);
}

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

.event-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
}

.event-location {
  font-size: 1rem;
  color: var(--neutral-medium);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.event-location i {
  margin-right: 0.5rem;
}

.event-description {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
}

/* ===== Accolades Section ===== */
.accolades-section {
  background-color: var(--neutral-light);
  padding: 80px 0;
}

.accolade-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accolade-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 0 0 var(--neutral-dark);
}

.accolade-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accolade-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.accolade-card p {
  color: var(--neutral-medium);
  margin-bottom: 0;
}

/* ===== Resources Section ===== */
.resources-section {
  background-color: white;
  padding: 80px 0;
}

.resource-download-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resource-download-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 0 0 var(--neutral-dark);
}

.resource-download-card .card-image {
  height: 200px;
}

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

.resource-download-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.resource-download-card p {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--neutral-light);
  padding: 80px 0;
}

.contact-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

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

.form-label {
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-control, .form-select {
  border: 2px solid var(--neutral-dark);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  box-shadow: 4px 4px 0 0 var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input {
  border: 2px solid var(--neutral-dark);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 80px 0 40px;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
}

.footer-description {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.social-links a:hover:after {
  width: 100%;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '→';
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover:before {
  transform: translateX(4px);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* ===== Модальные окна ===== */
.modal-content {
  border-radius: var(--border-radius-md);
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
  overflow: hidden;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1rem 2rem 2rem;
}

/* ===== Cookie Consent ===== */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.5rem;
  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;
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
}

.btn-cookie:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== Success Page ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  animation: fadeInUp 0.8s ease;
}

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

.success-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

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

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

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--neutral-dark);
  text-align: center;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
  font-weight: 700;
}

.content-section p {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ===== Анимации ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Медиа-запросы ===== */
@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    padding: 1rem;
    width: 100%;
  }
  
  .event-date .day {
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  h2.section-title {
    font-size: 2rem;
  }
  
  .stat-card,
  .research-card,
  .press-card,
  .accolade-card,
  .resource-download-card {
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .event-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}