
body {
  font-family: 'Roboto', sans-serif;
  background: url('/images/bohemian-pattern.webp') repeat;
  background-size: 200px;
  color: #493131;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a202c;
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cookie-content p {
  margin: 0;
  font-size: 16px;
  color: #fffbe6;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.cookie-content p strong {
  color: #ffe066;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.cookie-link {
  color: #d69e2e;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
}

.cookie-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-button-accept {
  background: #d69e2e;
  color: #1a202c;
}

.cookie-button-reject {
  background: #4a5568;
  color: #ffffff;
}

.hidden {
  display: none;
}

.header {
  background: #1a202c;
  border-top: 2px solid #d69e2e;
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #d69e2e;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 16px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Hero секция */
.hero {
  background: linear-gradient(to right, #b83232, #d69e2e);
  padding: 64px 0;
  text-align: center;
}

.hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-button {
  background: #d69e2e;
  color: #1a202c;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

.hero-button:hover {
  background: #e2b04a;
}

.about {
  padding: 64px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}

.section-divider {
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, #d69e2e, #b83232);
  margin: 0 auto 32px;
}

.about-text {
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-button {
  background: #d69e2e;
  color: #1a202c;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

.about-button:hover {
  background: #e2b04a;
}

.reviews {
  padding: 64px 0;
  background: #1a202c;
}

.reviews-swiper {
  padding-bottom: 40px;
}

.review-card {
  background: #96a9ca;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.review-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-weight: bold;
  font-size: 16px;
}

.swiper-pagination-bullet-active {
  background: #d69e2e;
}

.faq {
  padding: 64px 0;
  text-align: center;
}

.text-yellow {
  color: #d69e2e;
}

.text-white {
  color: #493131;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid;
}

.faq-card-red {
  background: rgba(178, 34, 34, 0.2);
  border-color: #ef4444;
}

.faq-card-yellow {
  background: rgba(217, 174, 46, 0.2);
  border-color: #d69e2e;
}

.faq-card-blue {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}

.faq-card-green {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
}

.faq-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.faq-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #d69e2e;
}

.faq-card-text {
  font-size: 16px;
  color: #72729b;
}

.faq-help-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.faq-help-image {
  height: 48px;
  width: auto;
}

.faq-help-link:hover {
  opacity: 0.8;
}

.footer {
  background: #1a202c;
  border-top: 2px solid #d69e2e;
  padding: 32px 0;
  text-align: center;
}

.footer p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #a6a6d3;
}

.footer-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
}


@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-title {
    font-size: 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .nav {
    flex-direction: column;
    gap: 8px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 16px;
  }
} 
p{
    color: #181818;
}

.section-image {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(178, 50, 50, 0.15), 0 1.5px 8px rgba(214, 158, 46, 0.10);
  border: 3px solid #d69e2e;
  background: #1a202c;
}

.hero-warning {
  margin: 32px auto 0 auto;
  max-width: 600px;
  background: linear-gradient(90deg, #d69e2e 80%, #b83232 100%);
  color: #1a202c;
  border: 3px solid #b83232;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(178, 50, 50, 0.10);
}
.hero-warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.hero-warning-text {
  flex: 1;
  text-align: left;
}
@media (max-width: 600px) {
  .hero-warning {
    font-size: 0.98rem;
    padding: 12px 8px;
    gap: 8px;
  }
  .hero-warning-icon {
    font-size: 1.3rem;
  }
}

/* Pop-up 18+ */
.popup18 {
  position: fixed;
  inset: 0;
  background: rgba(26,32,44,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.popup18.hidden { display: none; }
.popup18-inner {
  background: linear-gradient(120deg, #d69e2e 80%, #b83232 100%);
  color: #1a202c;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(178,50,50,0.18);
  padding: 36px 28px 28px 28px;
  max-width: 370px;
  width: 100%;
  text-align: center;
  border: 3px solid #b83232;
}
.popup18-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #b83232;
}
.popup18-text {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #1a202c;
}
.popup18-link {
  color: #b83232;
  text-decoration: underline;
  font-weight: 600;
}
.popup18-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.popup18-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #1a202c;
}
.popup18-btn {
  background: #b83232;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px #d69e2e55;
}
.popup18-btn:hover {
  background: #d69e2e;
  color: #b83232;
}

/* Cookie banner custom */
.cookie-banner-custom {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d69e2e 80%, #b83232 100%);
  color: #1a202c;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(178, 50, 50, 0.10);
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 1500;
  border: 2px solid #b83232;
  min-width: 260px;
  max-width: 95vw;
}
.cookie-banner-custom.hidden { display: none; }
.cookie-banner-text {
  font-size: 1rem;
  text-align: center;
}
.cookie-banner-link {
  color: #b83232;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
}
.cookie-banner-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner-btn.accept {
  background: #d69e2e;
  color: #1a202c;
}
.cookie-banner-btn.accept:hover {
  background: #e2b04a;
}
.cookie-banner-btn.refuse {
  background: #b83232;
  color: #fff;
}
.cookie-banner-btn.refuse:hover {
  background: #d69e2e;
  color: #b83232;
}
@media (max-width: 600px) {
  .popup18-inner { padding: 18px 6px; }
  .cookie-banner-custom { padding: 10px 6px; }
}