:root {
  /* Основные цвета в дополнительной цветовой схеме */
  --primary-color: #2c4172; /* Темно-синий */
  --primary-light: #3a5494;
  --primary-dark: #1e2c4f;
  
  --secondary-color: #d17a22; /* Оранжевый - дополнительный к синему */
  --secondary-light: #e88c2a;
  --secondary-dark: #b06419;
  
  /* Нейтральные цвета */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #c2c2c2;
  --neutral-500: #9e9e9e;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
  
  /* Акцентные цвета */
  --accent-color: #68b159; /* Зеленый - для кнопок действия */
  --accent-light: #7bc36b;
  --accent-dark: #569548;
  
  /* Ошибки и предупреждения */
  --error-color: #e53935;
  --warning-color: #ffb74d;
  --success-color: #43a047;
  
  /* Тени для нейроморфизма */
  --nm-shadow-light: 8px 8px 16px rgba(0, 0, 0, 0.03), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --nm-shadow-dark: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.4);
  --nm-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.05), inset -4px -4px 8px rgba(255, 255, 255, 0.5);
  
  /* Радиусы скругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Размеры контейнеров */
  --container-width: 1200px;
  --container-padding: 20px;
  
  /* Размеры текста */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

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

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

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

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: 1rem;
}

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

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

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

/* Утилиты */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 1rem auto 0;
  border-radius: var(--radius-sm);
}

/* Нейроморфические кнопки и элементы */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.6s ease;
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-light);
  color: var(--neutral-100);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
  color: var(--neutral-100);
}

.btn-tertiary {
  background-color: var(--accent-color);
  color: var(--neutral-100);
}

.btn-tertiary:hover {
  background-color: var(--accent-light);
  color: var(--neutral-100);
}

.btn-small {
  padding: 8px 16px;
  font-size: var(--text-sm);
}

/* Поля ввода и формы */
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--text-base);
  color: var(--neutral-800);
  background-color: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow-inset);
  transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(44, 65, 114, 0.2);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--neutral-700);
}

.form-group {
  margin-bottom: 1.5rem;
}

button, input[type="submit"] {
  cursor: pointer;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  margin: 0;
  font-size: var(--text-2xl);
  color: var(--primary-color);
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--neutral-800);
  font-weight: 600;
  font-size: var(--text-base);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

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

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--neutral-100);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
}

.image-container {
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-dark);
  overflow: hidden;
  text-align: center;
}

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

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

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

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

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: 1.5rem;
  text-align: center;
}

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

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

.resources-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

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

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

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

.resource-card ul {
  list-style: none;
}

.resource-card li {
  margin-bottom: 1rem;
}

.resource-card a {
  color: var(--secondary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

.resource-card a::after {
  content: '→';
  margin-left: 5px;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.resource-card a:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

/* Press Section */
.press-section {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.press-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.press-item {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--nm-shadow-light);
  transition: transform var(--transition-normal);
}

.press-item:hover {
  transform: translateY(-5px);
}

.press-date {
  color: var(--neutral-600);
  font-size: var(--text-sm);
  margin-bottom: 0.5rem;
}

.press-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.press-source {
  display: block;
  margin-top: 1rem;
  font-style: italic;
  color: var(--neutral-600);
}

/* Events Section */
.events-section {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.events-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.events-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  margin-bottom: 3rem;
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

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

.event-date .day {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: var(--text-xl);
  font-weight: 600;
  text-transform: uppercase;
}

.event-date .year {
  font-size: var(--text-base);
  margin-top: 0.25rem;
}

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

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

.event-location {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-description {
  margin-bottom: 1.5rem;
}

/* Careers Section */
.careers-section {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.careers-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.careers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.careers-image {
  flex: 1 1 40%;
  min-width: 300px;
}

.careers-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.careers-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.careers-text ul {
  list-style-type: none;
  margin-bottom: 2rem;
}

.careers-text li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.careers-text li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.5em;
  line-height: 1;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.job-card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--nm-shadow-light);
}

.job-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.job-card p {
  margin-bottom: 1.5rem;
}

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1 1 40%;
  min-width: 300px;
}

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

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

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

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  box-shadow: var(--nm-shadow-light);
}

.contact-icon i {
  color: var(--neutral-100);
  font-size: 1.25rem;
}

.contact-text h4 {
  color: var(--neutral-700);
  margin-bottom: 0.25rem;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

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

.contact-form-container {
  flex: 1 1 50%;
  min-width: 300px;
}

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

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

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 100%;
  max-width: 350px;
}

.footer-logo h2 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.footer-links {
  flex: 1 1 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  color: var(--neutral-100);
  font-size: var(--text-lg);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--neutral-100);
  font-size: 2rem;
}

.success-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

/* Privacy & Terms Pages */
.page-content {
  padding: 7rem 0 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.page-content h2 {
  color: var(--primary-color);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Отзывчивый дизайн */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }
  
  .hero {
    padding: 7rem 0 5rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .event-date .day,
  .event-date .month,
  .event-date .year {
    font-size: var(--text-base);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--neutral-100);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-content h1 {
    font-size: var(--text-4xl);
  }
  
  .hero-content p {
    font-size: var(--text-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-content,
  .careers-grid,
  .contact-content {
    flex-direction: column;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 15px;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .about-section,
  .services-section,
  .resources-section,
  .press-section,
  .events-section,
  .careers-section,
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Иконки с анимацией */
.location-icon::before {
  content: '📍';
}

.phone-icon::before {
  content: '📞';
}

.email-icon::before {
  content: '✉️';
}

/* Анимации и эффекты */
@keyframes morphBackground {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.image-container, .card-image {
  animation: morphBackground 8s ease-in-out infinite;
}

/* Модальные окна */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--nm-shadow-dark);
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--neutral-200);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--neutral-700);
  box-shadow: var(--nm-shadow-light);
}

/* Иконки социальных сетей */
.social-links a {
  position: relative;
  padding-left: 1.5rem;
}

.social-links a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.social-links a:hover::before {
  transform: translateY(-50%) scale(1.2);
}

.social-links a[href*="facebook"]::before {
  content: 'FB';
}

.social-links a[href*="twitter"]::before {
  content: 'TW';
}

.social-links a[href*="instagram"]::before {
  content: 'IG';
}

.social-links a[href*="linkedin"]::before {
  content: 'LI';
}

/* Специальные страницы */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

/* Ссылки "Читать далее" */
.read-more {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-right: 20px;
  transition: color var(--transition-fast);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--secondary-dark);
}

.read-more:hover::after {
  transform: translateY(-50%) translateX(5px);
}