:root {
  /* Раздельно-дополнительная цветовая схема */
  --primary-color: #3a86ff;
  --primary-light: #5c9aff;
  --primary-dark: #2870e0;
  
  --secondary-color: #ff7e1e;
  --secondary-light: #ff9a4d;
  --secondary-dark: #e86700;
  
  --tertiary-color: #8338ec;
  --tertiary-light: #9b5cf3;
  --tertiary-dark: #6c1bd3;
  
  --accent-color: #ffbe0b;
  --accent-light: #ffd54c;
  --accent-dark: #e0a600;
  
  --neutral-100: #ffffff;
  --neutral-200: #f5f7fa;
  --neutral-300: #e4e9f0;
  --neutral-400: #cbd5e1;
  --neutral-500: #94a3b8;
  --neutral-600: #64748b;
  --neutral-700: #475569;
  --neutral-800: #27374d;
  --neutral-900: #1a202c;
  
  /* Тени для нейроморфизма */
  --nm-shadow-small: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
  --nm-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
  --nm-shadow-large: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.7);
  --nm-shadow-inset: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.7);
  
  /* Радиусы */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Межстрочный интервал */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Высота контейнеров */
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: var(--line-height-tight);
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

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: underline;
}

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

ul {
  list-style: none;
}

/* Контейнер */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Секции */
section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: var(--font-size-4xl);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
  position: relative;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--neutral-600);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Кнопки */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--font-size-md);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  border: none;
  box-shadow: var(--nm-shadow-small);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--nm-shadow);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--nm-shadow-inset);
}

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

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

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

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

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

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

button, input[type='submit'] {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

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

.logo a {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--neutral-700);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

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

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

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-button span {
  height: 2px;
  width: 100%;
  background-color: var(--neutral-800);
  transition: all var(--transition-normal);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-normal);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--neutral-700);
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav a:hover {
  background-color: var(--neutral-200);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .mobile-nav {
    display: none;
  }
  .mobile-nav.active{
    display: block;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 8rem 0 5rem;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Services Section */
.services-section {
  background-color: var(--neutral-100);
}

.services-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.slider-container {
  display: flex;
  gap: 2rem;
  transition: transform var(--transition-slow);
  padding: 1rem 0;
}

.card {
  flex: 0 0 calc(100% - 2rem);
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.card-content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.card-content p {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.prev-button,
.next-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--neutral-100);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow-small);
  transition: all var(--transition-normal);
}

.prev-button:hover,
.next-button:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-2px);
}

.prev-button:active,
.next-button:active {
  box-shadow: var(--nm-shadow-inset);
  transform: translateY(0);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neutral-300);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.25);
}

@media (min-width: 768px) {
  .card {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (min-width: 1200px) {
  .card {
    flex: 0 0 calc(33.333% - 2rem);
  }
}

/* Research Section */
.research-section {
  background-color: var(--neutral-200);
  position: relative;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.research-item {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.research-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

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

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

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

.research-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--neutral-900);
  text-align: center;
}

.research-item p {
  padding: 0 1.5rem;
  color: var(--neutral-700);
  text-align: center;
  margin-bottom: 1.5rem;
}

.research-item .btn {
  margin: 0 1.5rem 1.5rem;
}

.stats-widget {
  background-color: var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: white;
  box-shadow: var(--nm-shadow);
}

.stats-widget h3 {
  text-align: center;
  color: white;
  margin-bottom: 2rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-card h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
}

.resource-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-card ul li {
  position: relative;
  padding-left: 1.5rem;
}

.resource-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.resource-card ul li a {
  color: var(--neutral-700);
  transition: color var(--transition-normal);
}

.resource-card ul li a:hover {
  color: var(--primary-color);
}

/* Projects Section */
.projects-section {
  background-color: var(--neutral-200);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.projects-grid .card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .projects-grid .card {
    flex-direction: row;
    align-items: stretch;
  }
  
  .projects-grid .card-image {
    width: 50%;
    height: auto;
  }
  
  .projects-grid .card-content {
    width: 50%;
    text-align: left;
    align-items: flex-start;
  }
}

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

.projects-grid .card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: var(--font-size-xs);
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Partners Section */
.partners-section {
  background-color: var(--neutral-100);
}

.partners-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.partner-item {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--nm-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal);
}

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

.partner-item .image-container {
  width: 100%;
  height: 120px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item .image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-item h3 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.partner-item p {
  color: var(--neutral-700);
  font-size: var(--font-size-sm);
}

.partner-testimonial {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--nm-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.partner-testimonial blockquote {
  position: relative;
}

.partner-testimonial blockquote::before {
  content: '"';
  font-size: 6rem;
  font-family: Georgia, serif;
  position: absolute;
  top: -3rem;
  left: -1rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.partner-testimonial p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--neutral-800);
  font-style: italic;
}

.partner-testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--neutral-700);
}

/* Accolades Section */
.accolades-section {
  background-color: var(--neutral-200);
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.accolade-item {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform var(--transition-normal);
}

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

.accolade-item .image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.accolade-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
  color: var(--neutral-900);
}

.accolade-item p {
  padding: 0 1.5rem;
  text-align: center;
  color: var(--neutral-700);
  margin-bottom: 3rem;
}

.award-year {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-100);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--nm-shadow);
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

.info-label {
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
  display: block;
}

.info-item p {
  color: var(--neutral-700);
}

.contact-map {
  margin-top: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-small);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form-container {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--nm-shadow);
}

.contact-form-container h3 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  transition: all var(--transition-normal);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: var(--font-size-md);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
}

.contact-form button {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-logo h3 {
  font-size: var(--font-size-2xl);
  color: white;
  margin-bottom: 0.5rem;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--neutral-400);
  transition: color var(--transition-normal);
}

.footer-column a:hover {
  color: white;
  text-decoration: none;
}

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

.social-links a {
  color: var(--neutral-400);
  font-size: var(--font-size-md);
  transition: color var(--transition-normal);
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
}

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

.success-content {
  max-width: 600px;
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--nm-shadow);
}

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

.success-content h1 {
  margin-bottom: 1rem;
}

.success-content p {
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--nm-shadow);
  margin-bottom: 3rem;
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-2xl);
}

.privacy-content p,
.terms-content p {
  margin-bottom: 1.5rem;
}

.privacy-content ul,
.terms-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.privacy-content ul li,
.terms-content ul li {
  margin-bottom: 0.75rem;
}

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

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

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-subtitle {
    font-size: var(--font-size-md);
    margin-bottom: 2.5rem;
  }
  
  .partners-carousel {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.875rem;
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.25rem;
    --font-size-xl: 1.125rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: var(--font-size-md);
    margin-bottom: 2rem;
  }
  
  .research-grid,
  .partners-carousel,
  .accolades-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-md);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}