/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #E5E4E2; /* платиновый фон для всего сайта */
  color: #B22222; /* красный акцент для текста */
  line-height: 1.6;
}

a {
  text-decoration: none;
}
.site-header .navbar {
  padding: 0;
}

.site-header .navbar-brand h1 {
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #c21807;
}

.btn-danger {
  background-color: #c21807;
  border: none;
}

.btn-danger:hover {
  background-color: #a51206;
}
/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* HERO */
.hero {
  background-color: #1e1e1e;
  color: #a6ff00;
  position: relative;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30,30,30,0.9), rgba(17,26,43,0.6)), url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero h2 {
  color: #a6ff00;
}

.hero p {
  color: #ccc;
}

.hero .btn {
  background-color: #a6ff00;
  color: #1e1e1e;
  border: none;
}

.hero .info-block {
  background-color: rgba(17,26,43,0.85); /* темно-синий */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero .info-block h5 {
  color: #a6ff00;
}

.hero .info-block ul li {
  color: #a6ff00;
}

.hero .info-block ul li span {
  color: #a6ff00;
}

.hero .info-block p {
  color: #ccc;
}
/* OFFERS */
.offers {
  background-color: #1e1e1e;
  color: #a6ff00;
  position: relative;
  padding: 5rem 0;
}

.offers h2 {
  color: #a6ff00;
}

.offer-block {
  background-color: #111a2b;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  overflow: hidden;
  margin-bottom: 3rem;
}

.offer-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #0d1a2b 0%, #111a2b 100%);
}

.offer-logo-wrap {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-logo {
  max-height: 60px;
  object-fit: contain;
}

.offer-info {
  flex: 1;
  color: #ccc;
}

.offer-info h3 {
  color: #a6ff00;
  margin-bottom: 0.5rem;
}

.offer-info p {
  margin-bottom: 1rem;
}

.offer-content {
  padding: 2rem;
  background-color: #1b2533;
  border-top: 1px solid #2a3a50;
  border-bottom: 1px solid #2a3a50;
}

.offer-content h5 {
  color: #a6ff00;
  margin-bottom: 1rem;
}

.offer-content ul {
  list-style: none;
  padding-left: 0;
}

.offer-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #a6ff00;
}

.offer-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #a6ff00;
}

.offer-warning-area {
  background-color: #0d1a2b;
  color: #ccc;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  border-top: 1px solid #2a3a50;
}

.btn-offer {
  background-color: #a6ff00;
  color: #1e1e1e;
  border: none;
}

.btn-offer:hover {
  background-color: #8cdd00;
  color: #000;
}
/* RESPONSIBLE */


.responsible {
  background-color: #1e1e1e; /* темно-серый фон страницы */
  color: #ffffff; /* светлый текст */
  position: relative;
}

/* Заголовки */
.responsible h2 {
  color: #a6ff00;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.responsible h3 {
  color: #a6ff00;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

/* Добавляем лаймовую полоску слева от заголовка */
.responsible h3::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #a6ff00;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
}

/* Обертка контента */
.responsible-wrapper {
  background-color: #2a2a2a; /* чуть светлее основного фона */
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  padding: 3rem;
}

/* Блоки контента */
.responsible .intro,
.responsible .security,
.responsible .mobile,
.responsible .advice,
.responsible .education {
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Списки с иконками */
.responsible ul.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.responsible ul li {
  position: relative;
  padding-left: 2.5rem;
  
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

/* Иконки перед пунктами списка */
.responsible ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

/* Разные иконки для разных блоков */
.security ul li::before { content: "✔️"; color: #a6ff00; }
.mobile ul li::before   { content: "⚠️"; color: #ffdd00; }
.advice ul li::before   { content: "💡"; color: #00cfff; }
.education ul li::before{ content: "🛠️"; color: #ff6a00; }

/* Ссылки */
.responsible a {
  color: #a6ff00;
  text-decoration: none;
  font-weight: 600;
}

.responsible a:hover {
  text-decoration: underline;
}

/* Блок предупреждения / контакта */
.responsible-warning-area {
  background-color: #262626;
  border-top: 3px solid #a6ff00;
  padding: 1.5rem;
  border-radius: 0 0 20px 20px;
}

.responsible-warning-area .alert {
  background-color: transparent;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 0.9rem;
}
/* FOOTER */
.sw-footer {
  background-color: #1e1e1e;
  color: #ffffff;
}

.sw-footer a.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.sw-footer a.footer-link:hover {
  color: #a6ff00;
  text-decoration: underline;
}

.sw-footer .footer-logo {
  max-height: 50px;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.3s;
}

.sw-footer .footer-logo:hover {
  transform: scale(1.1);
}

.sw-footer h6 {
  margin-bottom: 1rem;
}

.sw-footer p, .sw-footer li {
  color: #cccccc;
}
.sw-privacy {
  background: #fff8f0;
  color: #3c1f1f;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.sw-privacy-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #5a2a2a;
}

.sw-privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.sw-privacy-block {
  background: #fff3e6;
  padding: 25px 20px;
  border-left: 5px solid #b22222;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(184, 139, 63, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sw-privacy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(184, 139, 63, 0.3);
}

.sw-step {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #b22222;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 12px;
}

.sw-privacy-block h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #3c1f1f;
}

.sw-privacy-block p {
  font-size: 1rem;
  line-height: 1.6;
}
ul.gslyu-checklist {
  margin-left: 20px;
}
.sw-final {
  background: #fdf0e5;
  border-left-color: #d4a460;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .offer-header {
    flex-direction: column;
    text-align: center;
  }

  .offer-logo-wrap {
    margin-bottom: 1rem;
  }
  .offer, .slot {
    width: 48%;
  }
  .review {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .offer, .slot {
    width: 100%;
    margin-bottom: 20px;
  }
}
