.main-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
      background: linear-gradient(135deg, #3c1a1a, #852323, #6b1e28);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #f86b6b9c;
}

/* === Бургер === */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* === Анімація на активний стан === */
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* === Мобільне меню === */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    display: none;
    background-color: #1c1800;
    width: 100%;
    padding: 1rem 0;
  }

  .main-nav.show {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

.offers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px;
  background: transparent;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.offer-block {
  background: rgba(60, 26, 26, 0.7);
  /* темний вишневий прозорий фон */
  color: #e3d9d9;
  /* світлий кремовий текст для контрасту */
  border-radius: 14px;
  border: 3px solid #852323;
  /* насичений вишневий */
  flex: 1 1 calc(25% - 24px);
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem;
  box-shadow: 0 6px 15px rgba(107, 30, 40, 0.6);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.offer-block:hover {
  transform: translateY(-8px);
  border-color: #FF3747;
  /* яскравий світлий вишневий акцент */
  box-shadow: 0 10px 20px rgba(255, 55, 71, 0.9);
}

.offer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.offer-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.offer-rating {
  font-size: 3rem;
  font-weight: 800;
  color: #f0e6e6;
  margin: 0;
  text-shadow: 0 0 6px #FF3747;
}

.offer-stars {
  font-size: 1.8rem;
  color: #FF3747;
  user-select: none;
  margin-top: 0.35rem;
  text-shadow: 0 0 5px #852323;
}

.offer-description {
  font-size: 1.15rem;
  margin: 1rem 0 1.8rem;
  color: #d6c7c7;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.3rem;
  width: 100%;
}

.offer-features li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.85rem;
  font-weight: 700;
  color: #ff6978;
  /* рожево-вишневий для тексту */
  letter-spacing: 0.02em;
  text-shadow: 0 0 3px #852323;
}

.offer-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FF3747;
  font-size: 1.4rem;
  line-height: 1;
  text-shadow: 0 0 6px #6b1e28;
}

.offer-button {
  background: linear-gradient(90deg, #FF3747, #852323);
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 2.3rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 55, 71, 0.8);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
  align-self: stretch;
  text-align: center;
  display: block;
  letter-spacing: 0.03em;
}

.offer-button:hover,
.offer-button:focus {
  background: linear-gradient(90deg, #852323, #FF3747);
  box-shadow: 0 8px 25px rgba(255, 55, 71, 1);
  transform: scale(1.07);
  outline: none;
}

/* Responsive */

@media (max-width: 1024px) {
  .offer-block {
    flex: 1 1 calc(50% - 24px);
    max-width: none;
  }
}

@media (max-width: 600px) {
  .offer-block {
    flex: 1 1 100%;
  }
}
 .page-terms {
   padding: 120px 20px;
   font-family: 'Segoe UI', Tahoma, sans-serif;
   background: linear-gradient(135deg, #3c1a1a, #6b1e28);
   color: #fdf6f9;
   animation: fadeInUp 0.8s ease forwards;
   opacity: 0;
   transform: translateY(20px);
 }

 .page-terms .terms-wrapper {
   max-width: 900px;
   margin: 0 auto;
 }

 .page-terms h1 {
   font-size: 2.8rem;
   margin-bottom: 40px;
   color: #FFD700;
   text-align: center;
   line-height: 1.2;
 }

 .page-terms h1 span {
   color: #ffffff;
   font-weight: 300;
   display: block;
 }

 .terms-section {
   display: flex;
   align-items: flex-start;
   gap: 20px;
   background: rgba(255, 255, 255, 0.05);
   border-left: 4px solid #FF8F00;
   border-radius: 12px;
   padding: 20px;
   margin-bottom: 24px;
 }

 .terms-section img {
   width: 60px;
   height: auto;
   flex-shrink: 0;
   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
 }

 .terms-section h2 {
   font-size: 1.5rem;
   margin-bottom: 10px;
   color: #FFD700;
 }

 .terms-section p {
   font-size: 1.1rem;
   line-height: 1.6;
 }

 .terms-section a {
   color: #FF8F00;
   text-decoration: underline;
   font-weight: 600;
 }

 @keyframes fadeInUp {
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Mobile-friendly */
 @media (max-width: 600px) {
   .terms-section {
     flex-direction: column;
     text-align: left;
   }

   .terms-section img {
     width: 48px;
   }
 }