/* Сброс */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #222;
  color: #fff;
  cursor: url("../assets3/img/curs.png") 0 0, auto;
}

.container {
  width: 100%;             /* БЫЛО: 1200px */
  max-width: 1200px;       /* ограничение сверху */
  margin: 0 auto;

}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Шапка */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  transition: 0.3s;
  z-index: 1000;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #ffcc00;
}
.header .logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 8px;
}
.header .logo small {
  font-size: 11px;
  color: #aaa;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
  display: inline-block;   /* нужно, чтобы transform работал */
}

.nav a.active {
  color: #ffcc00;
}

.nav a:hover {
  color: #ffcc00;
  transform: translateY(-5px); /* подпрыгивание вверх */
}
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: bold;
  background: #ffcc00;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn.grey {
  background: #ccc;
  color: #222;
}
.menu-btn {
  background: #ffcc00;
  border: none;
  padding: 6px 12px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
/* Шапка после скролла */
.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header.scrolled .nav a {
  color: #222;
}
.header.scrolled .nav a:hover {
  color: #ffcc00;
}

/* Hero */
.hero {
  min-height: 100vh; /* вместо height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 70px; /* отступ под фиксированную шапку */
}
.hero h1 {
  font-size: 34px;
  max-width: 700px;
}
.hero strong {
  color: #ffcc00;
}
.hero-buttons {
  display: flex;
  gap: 12px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #fff;
  color: #222;
  transition: 0.3s;
  padding: 20px;
  z-index: 2000;
  overflow-y: auto;
}
.sidebar.open {
  right: 0;
}
.close-btn {
  background: none;
  border: 1px solid #222;
  padding: 4px 8px;
  font-size: 18px;
  cursor: pointer;
}
.sidebar-box {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px 0;
}
.sidebar-box h3 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  border-left: 3px solid #ffcc00;
  padding-left: 8px;
}
.feed {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.feed img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.feed p {
  font-size: 12px;
}
.feed small {
  font-size: 11px;
  color: #555;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* === Hero Slider === */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Слайды */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Затемнение фото */
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* Контент по центру */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 20px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 48px;
  max-width: 800px;
  line-height: 1.2;
  word-wrap: break-word;
  text-align: center;
}
.hero-content strong {
  color: #ffcc00;
}
.hero-content p {
  max-width: 700px;   /* ширина текста */
  margin: 0 auto 30px; /* центрируем и даём отступ снизу */
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Кнопки */
.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn.yellow {background:#ffcc00;color:#fff;}
.btn.grey {background:#fff;color:#222;}

/* Стрелки */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
}
.prev {left: 20px;}
.next {right: 20px;}

/* Футер */
.footer {
  background: #222429;
  color: #ddd;
  font-size: 14px;
  padding: 40px 20px 20px;
}
.footer .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Верхний блок */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #ffcc00;
  justify-self: start;
}
.footer-logo img {
  height: 40px;
  width: 40px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  justify-self: center;
}
.footer-nav a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-nav a:hover {
  color: #ffcc00;
}
.footer-newsletter {
  justify-self: end;
  text-align: right;
  min-width: 280px;
}
.footer-newsletter form {
  display: flex;
  gap: 5px;
}
.footer-newsletter input {
  padding: 8px;
  border: 1px solid #444;
  background: #2a2b2f;
  color: #fff;
  flex: 1;
}
.footer-newsletter button {
  background: #ffcc00;
  border: none;
  padding: 8px 15px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
}
.footer-links a:hover {
  color: #ffcc00;
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  color: #888;
  font-size: 13px;
}
.popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffcc00;
  color: #000;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: none;
  z-index: 3000;
}
.footer-wave {
  position: relative;
  top: 2px;
  line-height: 0;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}
.footer-socials {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #2a2b2f;
  color: #ddd;
  font-size: 16px;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: #ffcc00;
  color: #fff;
}
.footer-decor {
  position: relative;
  line-height: 0;
}
.footer-decor svg {
  display: block;
  width: 100%;
  height: 120px;
}

@media (max-width: 991px) {
  .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Шапка */
  .actions .btn { display: none; }
  .menu-btn { display: block; }

  .nav {
    display: block;
    width: 100%;
    background: #111;
    margin-top: 15px;
  }
  .nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .nav a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }

  /* Hero */
  .hero h1,
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Сайдбар */
  .sidebar {
    width: 80%;
    max-width: 320px;
  }

  /* Футер */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-logo { justify-content: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .footer-newsletter {
    justify-self: center;
    text-align: center;
    min-width: auto;
    width: 100%;
  }
  .footer-newsletter form {
    flex-direction: column;
    gap: 10px;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }
  .footer-socials { justify-content: center; }
}

@media (max-width: 576px) {
  .hero-content h1 { font-size: 22px; }
  .hero { padding: 0 10px; }
  .footer { font-size: 13px; }
  .footer-links { flex-direction: column; gap: 10px; }
}


/* Кнопки */
.burger-btn, .menu-btn {
  background: #ffcc00;
  border: none;
  padding: 6px 12px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}

/* По умолчанию бургер скрыт */
.burger-btn { display: none; }

/* Сайдбары */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  color: #000000;
  transition: 0.3s;
  padding: 20px;
  z-index: 2000;
}
.sidebar.open { right: 0; }

.sidebar ul { list-style: none; padding: 0; }
.sidebar li { margin: 15px 0; }
.sidebar a { color: #080808; text-decoration: none; font-size: 18px; }

/* Overlay */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}
.overlay.show { opacity: 1; visibility: visible; }

/* Мобилка */
@media (max-width: 991px) {
  .desktop-nav { display: none; }  /* скрываем меню */
  .actions .btn { display: none; } /* убираем кнопку Quote */
  .burger-btn { display: block; }  /* показываем бургер */
  /* .menu-btn (три точки) всегда видно */
}
.services {
  padding: 80px 20px;
  background: #fff;
  color: #222;
}

/* Карточки */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1100px;  /* ограничиваем ширину */
  margin-left: auto;
  margin-right: auto; /* центрируем */
}
.card {
  flex: 1;
  min-width: 280px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-radius: 8px;
  transition: 0.3s;
}
.card i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #b76533;
}
.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #585656;
}
.card a {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #080808;
}
.card:hover {
  transform: translateY(-8px);
}
.card.dark {
  background: #222429;
  color: #fff;
}
.card.dark a { color: #ffcc00; }
.card.yellow {
  background: #ffcc00;
  color: #222;
}
.card.yellow a { color: #222; font-weight: bold; }

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.about-text {
  flex: 1;
}
.about-text .subtitle {
  font-size: 14px;
  font-weight: bold;
  color: #ffcc00;
  display: block;
  margin-bottom: 10px;
}
.about-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}
.experience {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #ffcc00;
  color: #222;
  font-weight: bold;
  padding: 20px 30px;
  border-radius: 5px;
}
.experience .years {
  font-size: 40px;
  font-weight: bold;
  color: #000;
}
.about-img {
  flex: 1;
  text-align: center;
}
.about-img img {
  max-width: 100%;
  border-radius: 8px;
}

/* 📱 Адаптив */
@media (max-width: 992px) {
  .service-cards { flex-wrap: wrap; }
  .card { flex: 1 1 calc(50% - 20px); }
  .about-section { flex-direction: column; text-align: center; }
  .experience { margin: 0 auto; }
}

@media (max-width: 600px) {
  .card { flex: 1 1 100%; }
  .about-text h2 { font-size: 22px; }
  .about-text p { font-size: 14px; }
  .experience { flex-direction: column; }
  .experience .years { font-size: 32px; }
}
/* Карточка */
.service-card {
  background: #2a2c31;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.4);
}

/* Фото */
.service-card .service-image {
  width: 100%;
  height: 220px; /* сделано чуть больше */
  overflow: hidden;
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* красиво обрезает */
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08); /* эффект приближения */
}

/* Название */
.service-card h3 {
  margin: 15px 0 12px;
  font-size: 20px;  /* чуть крупнее */
  color: #fff;
}

/* Кнопка */
.service-card .btn {
  display: inline-block;
  margin: 0 auto 18px;
  padding: 10px 20px;
  background: #ffcc00;
  color: #222;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.3s;
}

.service-card .btn:hover {
  background: #ffaa00;
}

.services-section {
  background: #222429;
  color: #fff;
  padding: 80px 20px;
}

.services-layout {
  display: grid;
  grid-template-columns: 300px 1fr; /* левый блок уже */
  gap: 40px;
  align-items: start;
}

/* Левый блок */
.services-intro {
  text-align: left;
}
.services-intro .subtitle {
  display: block;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.services-intro h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.services-intro .btn {
  display: inline-block;
}

/* Сетка карточек */
.services-grid {
  display: grid;
   grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #222429;
  padding: 25px 20px;
  border: 1px solid #333;
  border-radius: 6px;
  transition: 0.3s;
  position: relative;
  text-align: center;
}

.service-card .icon {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 18px;
  color: #ffcc00;
}
.service-card h3 {
  margin: 15px 0 10px;
  font-size: 16px;
}
.service-card p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 15px;
}
.service-card i {
  font-size: 36px;
  color: #ffcc00;
}

/* 📱 Адаптив */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-intro {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* Секция Service About */
.service-about {
  background: #222429;
  padding: 60px 20px;
}
.service-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-image {
  flex: 1;
}
.service-image img {
  width: 100%;
  border-radius: 8px;
}
.service-text {
  flex: 1;
  color: #fff;
}
.service-text .subtitle {
  color: #ffcc00;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.service-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.service-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Табы */
.service-tabs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.service-tabs .tab {
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.service-tabs .tab.active {
  background: #ffcc00;
  color: #111;
}

.service-tabs .tab:hover,
.service-tabs .tab.active {
  background: #ffcc00;
  color: #111;
}
.service-text-item {
  display: none;
}
.service-text-item.active {
  display: block;
}
.service-tabs .tab {
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.service-tabs .tab.active {
  background: #ffcc00;
  color: #111;
}

/* Секция статистики */
.stats {
  background: #ffcc00;
  padding: 50px 20px;
  margin-top: -60px;   /* 🚀 вылазит поверх предыдущей секции */
  position: relative;
  z-index: 5;

  display: flex;              /* 👈 добавим центрирование */
  justify-content: center;    
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;                  /* чуть больше воздуха */
  max-width: 1200px;
  width: 100%;                /* растягиваем по ширине */
  text-align: center;
}
.stats h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000;
}
.stats p {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 992px) {
  .service-content {
    flex-direction: column;
    text-align: center;
  }
  .service-tabs {
    justify-content: center;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  .stats h3 {
    font-size: 32px;
  }
}
.testimonials {
  background: #f5f8fa;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-item {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-item.active {
  display: block;
}
.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 4px solid #ffcc00;
}
blockquote {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 20px 0;
}
.author {
  font-weight: bold;
  margin-top: 10px;
  color: #000;
}
.author span {
  display: block;
  font-size: 14px;
  color: #777;
}

/* Навигация */
.testimonial-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.testimonial-nav span {
  cursor: pointer;
  font-weight: bold;
  color: #666;
  padding: 5px 10px;
  transition: 0.3s;
}
.testimonial-nav span.active {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.places-areas {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #333;
  letter-spacing: 2px;
}

.big-photo img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 30px;
}

.small-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.small-photos img {
  width: 100%;
  border-radius: 6px;
}
.gallery img {
  cursor: pointer; /* 👉 при наведении будет "пальчик" */
}
.text-block {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
.text-block h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}
.text-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.text-columns p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
@keyframes sparkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; filter: brightness(1.2); }
  75% { filter: brightness(1.5) saturate(1.2); }
}
.places-areas img {
  animation: sparkle 4s infinite;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox .prev, .lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}
.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }
/* 📱 Адаптив */
@media (max-width: 992px) {
  blockquote {
    font-size: 18px;
  }
  .section-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .testimonial-header img {
    width: 70px;
    height: 70px;
  }
  blockquote {
    font-size: 16px;
  }
  .testimonial-nav {
    gap: 10px;
  }
  .small-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .text-block h3 {
    font-size: 18px;
  }
  .text-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 40px 15px;
  }
  .testimonial-header img {
    width: 60px;
    height: 60px;
  }
  blockquote {
    font-size: 14px;
    margin: 15px 0;
  }
  .author {
    font-size: 14px;
  }
  .section-title {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .big-photo img {
    margin-bottom: 20px;
  }
  .small-photos {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .text-columns p {
    font-size: 14px;
    line-height: 1.4;
  }
  .lightbox img {
    max-width: 95%;
    max-height: 70%;
  }
}
.about-us {
  padding: 80px 20px;
  background: #fff; /* белый фон */
  color: #222;
}
.about-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffcc00;
}
.about-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}
.achievements {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
.achieve h3 {
  font-size: 28px;
  color: #ffcc00;
}
.achieve p {
  font-size: 14px;
  color: #333;
}
.about-img {
  flex: 1;
  text-align: center;
}
.about-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.news-section {
  background: #ffcc00;
  padding: 60px 20px;
  text-align: center;
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.news-item:hover {
  transform: translateY(-3px);
}

.news-date {
  display: inline-block;
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.news-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  font-size: 14px;
  font-weight: bold;
  color: #ffcc00;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.read-more:hover {
  border-color: #ffcc00;
}

/* 📱 адаптив */
@media (max-width: 576px) {
  .news-title {
    font-size: 18px;
  }
  .news-text {
    font-size: 14px;
  }
}
.faq-section {
  background: #fff;
  color: #222;
  padding: 80px 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffcc00;
  text-transform: uppercase;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* исправлено: вместо display: none/block используем max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding-bottom 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* заведомо больше текста */
  padding-bottom: 18px;
  opacity: 1;
}


@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}
.dmca-section {
  background: #222429;
  color: #ddd;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}
.dmca-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 8px;
  background: linear-gradient(90deg, #ffcc00, #ff8800, #ffcc00);
  animation: shine 4s linear infinite;
}
@keyframes shine {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.dmca-section h1 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dmca-section p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #ccc;
}

.dmca-section a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.dmca-section a:hover {
  text-decoration: underline;
}

/* 📱 адаптив */
@media (max-width: 768px) {
  .dmca-section h1 {
    font-size: 28px;
  }
  .dmca-section p {
    font-size: 14px;
  }
}
.contact-section {
  background: #222429;
  color: #fff;
  padding: 80px 20px;
}

.contact-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffcc00;
}

.contact-info p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.contact-info li i {
  color: #ffcc00;
  font-size: 18px;
}

/* Форма */
.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  background: #2a2b31;
  color: #fff;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  background: #ffcc00;
  color: #222;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e6b800;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
    gap: 40px;
  }
  .contact-info h2 {
    font-size: 26px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: #222429;
  color: #ddd;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 5000;
  animation: slideUp 0.5s ease;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.cookie-banner a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner .btn {
  background: #ffcc00;
  color: #222;
  font-weight: bold;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}

.cookie-banner .btn:hover {
  background: #e6b800;
}

/* Animation */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
 #cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #f8f8f8;
    box-shadow: 0 4px 12px rgba(247, 245, 245, 0.15);
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    animation: fadeIn 0.8s ease;
  }

  #cookie-banner .cookie-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
  }

  #cookie-banner a {
    color: #e6e20e;
    text-decoration: underline;
  }

  #cookie-banner button {
    background: #eede06;
    color: #080808;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
  }

  #cookie-banner button:hover {
    background: #fafafa;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
  }

/* Оверлей */
.age-banner {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;

  /* центрирование */
  display: flex;
  justify-content: center;
  align-items: center;

  animation: fadeIn 0.6s ease;
}

/* Контент */
.age-banner-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #222429;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  max-width: 500px;
  width: 90%;
  animation: scaleIn 0.5s ease;
}

.age-banner-content h1 {
  font-size: 64px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.age-banner-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Анимации */
@keyframes scaleIn {
  from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.age-disclaimer {
  background: #222429; /* тёмный фон */
  color: #f0f0f0;   /* светлый текст */
  padding: 40px 20px;
  text-align: center;
   border: none !important;
}

.age-disclaimer .footer-logo {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.age-disclaimer .footer-disclaimer {
  font-size: 16px;
  font-weight: bold;
  color: #00fa0c; /* акцент для "18+" */
  margin-bottom: 15px;
}

.age-disclaimer .footer-text {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.age-disclaimer .footer-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.age-disclaimer .footer-logos img {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}

.age-disclaimer .footer-logos img:hover {
  transform: scale(1.1);
}

  