/* ===== НОВЫЕ СТИЛИ ДЛЯ ПЕРЕДЕЛАННОГО САЙТА ===== */

/* Импорт шрифта Sofia Sans Extra Condensed */
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Базовые настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Sofia Sans Extra Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* Контейнеры */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Баннер возраста */
.age-banner {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.age-banner__content {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.age-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
}

/* Хедер */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
}

.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.logo__text {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Мобильная кнопка меню */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger__line:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger__line:nth-child(2) {
  margin-bottom: 6px;
}

/* Анимация гамбургера при открытии */
.mobile-menu-toggle.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav__link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.nav__link:hover {
  color: #007bff;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav__link--cta:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.nav__link--cta::after {
  display: none;
}

/* Секции */
.section {
  padding: 80px 0;
}

.section--alt {
  background: #f1f3f4;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Герой секция */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__main {
  text-align: left;
}

.hero__title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__card {
  background: white;
  color: #333;
  padding: 0 40px 40px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.rating-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: inline-block;
}

.rating-badge__score {
  font-size: 32px;
  font-weight: bold;
}

.rating-badge__max {
  font-size: 18px;
  opacity: 0.8;
}

.hero__logo {
  height: 160px;
  margin: 0;
  object-fit: contain;
}

.hero__card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.feature-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.hero__disclaimer {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn--primary {
  background: #007bff;
  color: white;
}

.btn--primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn--secondary:hover {
  background: white;
  color: #007bff;
  transform: translateY(-2px);
}

.btn--accent {
  background: #28a745;
  color: white;
}

.btn--accent:hover {
  background: #1e7e34;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn--outline:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn--large {
  padding: 18px 40px;
  font-size: 18px;
}

/* О нас секция */
.about__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #007bff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Боковая панель */
.about__sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #333;
}

.trust-list {
  margin-bottom: 30px;
}

.trust-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.trust-item__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.trust-item__content h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.trust-item__content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.badge {
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.sidebar-card__footer p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Топ оператор */
.top-operator {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.top-operator__rating {
  text-align: center;
}

.rating-display {
  margin-bottom: 15px;
}

.rating-display__score {
  font-size: 48px;
  font-weight: bold;
  color: #28a745;
}

.rating-display__max {
  font-size: 24px;
  color: #999;
}

.rating-stars {
  font-size: 24px;
  color: #ffd700;
}

.operator-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.operator-brand__logo {
  height: 50px;
  object-fit: contain;
}

.operator-brand__name {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  text-transform: uppercase;
}

.top-operator__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.top-operator__disclaimer {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}

/* Ответственный гемблинг */
.responsible__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.help-contacts h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 500;
}

.contact-item strong {
  color: #007bff;
}

.info-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #28a745;
}

.info-box p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.principle-list {
  list-style: none;
  padding: 0;
}

.principle-list li {
  padding: 10px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.principle-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Контакт */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
  text-align: center;
}

.info-list {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.info-item__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.info-item__content h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.info-item__content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.newsletter {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.newsletter h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.newsletter p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
}

.newsletter-form .btn {
  padding: 12px 20px;
  font-size: 14px;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.link-list a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Футер */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 30px;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footer__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.footer__brand strong {
  font-size: 20px;
  color: #3498db;
  display: block;
  margin-bottom: 10px;
}

.footer__brand p {
  color: #bdc3c7;
  line-height: 1.6;
  margin: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #3498db;
}

.footer__disclaimer {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 4px solid #e74c3c;
}

.footer__disclaimer h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e74c3c;
  text-align: center;
}

.disclaimer-content p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.responsible-logos img {
  height: 50px;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.responsible-logos img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.footer__copy {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;
  font-size: 14px;
}

/* Баннер cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #3498db;
  text-decoration: underline;
}

.cookie-type-item:last-child {
  border-bottom: none;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ УСЛОВИЙ ===== */
.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.terms-icon {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
  padding-top: 0.25rem;
}

.terms-text h4 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1rem;
}

.terms-text p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
}

.aside-header {
  background: #007bff;
  color: white;
  padding: 1rem;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.aside-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.aside-content {
  background: white;
  border: 1px solid #e9ecef;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.aside-footer {
  margin-bottom: 1.5rem;
}

.sidebar-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.125rem;
}

.sidebar-card p {
  margin: 0 0 1rem 0;
  color: #666;
  line-height: 1.5;
}

.sidebar-links {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-links h4 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  color: #007bff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.sidebar-links a:hover {
  background: #f8f9fa;
  color: #0056b3;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ COOKIES ===== */
.cookie-types {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookie-duration {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.preferences-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.preferences-options {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.preference-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.preference-option input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #007bff;
}

.cookie-controls {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.third-party-cookies {
  margin: 2rem 0;
}

.third-party-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cookie-type-list {
  list-style: none;
  padding: 0;
}

.cookie-type-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.cookie-type-item:last-child {
  border-bottom: none;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦ КОНТЕНТА ===== */

/* Сетка контента */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.content-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 3px solid #007bff;
  padding-bottom: 10px;
}

.content-section h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.content-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0 0 15px 20px;
  color: #666;
}

.content-section li {
  margin-bottom: 8px;
}

/* Информационные карточки */
.info-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #007bff;
}

.info-card h3 {
  color: #007bff;
  margin-bottom: 15px;
}

.warning-card {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
  border-left: 4px solid #f39c12;
}

.warning-card h3 {
  color: #856404;
  margin-bottom: 15px;
}

.contact-card {
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
  text-align: center;
  border-left: 4px solid #2196f3;
}

.contact-card h3 {
  color: #1976d2;
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 20px;
}

/* Боковая панель контента */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-links {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-links h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

/* Элементы защиты */
.protection-list {
  margin-bottom: 30px;
}

.protection-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.protection-item__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.protection-item__content h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.protection-item__content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero__main {
    text-align: center;
  }
  
  .about__grid,
  .responsible__grid,
  .contact__grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about__sidebar {
    position: static;
  }
  
  .top-operator {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero__title {
    font-size: 36px;
  }
  
  .hero__subtitle {
    font-size: 18px;
  }
  
  .section__title {
    font-size: 28px;
  }
  
  /* Мобильное меню */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav__link {
    font-size: 18px;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .nav__link--cta {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    margin-top: 20px;
  }
  
  .header__inner {
    position: relative;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }
  
  .content-section {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
  
  .hero__subtitle {
    font-size: 16px;
  }
  
  .section__title {
    font-size: 24px;
  }
  
  .hero__card {
    padding: 30px 20px;
  }
  
  .top-operator {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .footer__disclaimer {
    padding: 20px;
  }
  
  .content-section {
    padding: 20px;
  }
}
