* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      color: #333;
      background-color: #f9f9f9;
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .header {
      background-color: #e50914;
      padding: 20px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #fff;
    }
    .nav-link {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      font-size: 16px;
      transition: opacity 0.3s;
    }
    .nav-link:hover {
      opacity: 0.7;
    }
/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1000px;        /* фиксированная высота */
  padding: 0;                /* сброс старых паддингов */
  background: url('img/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0; */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;           /* около 48px */
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-size: 1.25rem;        /* около 20px */
  max-width: 600px;
  margin: 0 auto 1.5em;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Кнопка поверх оверлея */
.btn-primary {
  position: relative;
  z-index: 1;
}
    .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .btn-primary {
      background-color: #e50914;
      color: #fff;
      border: none;
    }
    .btn-primary:hover {
      background-color: #b20710;
    }
    .btn-secondary {
      background-color: #111;
      color: #fff;
      border: none;
    }
    .btn-secondary:hover {
      background-color: #444;
    }
    /* Sections */
    .section {
      padding: 100px 0;
    }
    .section-title {
      font-size: 32px;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
    }
    .section-title::after {
      content: '';
      width: 60px;
      height: 3px;
      background-color: #e50914;
      display: block;
      margin: 10px auto 0;
    }
    .section-text {
      font-size: 18px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
    }
    .values-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .values-list li {
      background-color: #fff;
      padding: 20px 30px;
      border-radius: 4px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      font-weight: bold;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .service-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 4px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center;
    }
    .service-card h3 {
      margin-bottom: 15px;
      color: #e50914;
    }
    .prev { left: 10px; }
    .next { right: 10px; }
    /* Contacts */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .contact-info p {
      margin-bottom: 10px;
      font-size: 18px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }
    .contact-form button {
      width: 100%;
    }
    /* Footer */
    .footer {
      background-color: #111;
      padding: 20px 0;
      text-align: center;
    }
    .footer p {
      color: #fff;
      font-size: 14px;
    }
    /* Animations */
    .animate {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .animate.show {
      opacity: 1;
      transform: translateY(0);
    }
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  padding: 40px 0;
}

.partners-logos img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.footer-link {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.7;
}

/* ==== Privacy page ==== */
.privacy-page {
 padding: 120px 0 40px;   
  background-color: #f9f9f9;}

.privacy-page .section-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #333;
  position: relative;
  margin: 0 0 20px; /* убрали верхний отступ */
}
.privacy-page .section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #e50914;
  display: block;
  margin: 10px auto 0;
}

.privacy-page .privacy-section {
  /* межблочные отступы уменьшены */
  padding: 40px 0;   /* вместо margin-bottom: 40px здесь паддинги сверху/снизу */
  margin: 0;         /* обнуляем внешний отступ */
}
.privacy-page .privacy-section h2 {
  font-size: 24px;
  color: #e50914;
  margin: 0 0 15px; /* только нижний отступ */
}
.privacy-page .privacy-section p,
.privacy-page .privacy-section ul {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px;
}
.privacy-page .privacy-section ul {
  list-style: none;
  padding-left: 20px;
}
.privacy-page .privacy-section ul li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
}
.privacy-page .privacy-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e50914;
}

.footer-link {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  transition: opacity 0.3s;
}
.footer-link:hover {
  opacity: 0.7;
}
