
    .page {
      width: min(1100px, 100%);
      margin: 0 auto;
      padding: 30px 16px 120px;
    }

    .page-head {
      margin-bottom: 30px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.2);
    }

    .page-head h1 {
      margin: 0;
      font-size: 28px;
      font-weight: 300;
      letter-spacing: .04em;
    }

    .page-head p {
      margin-top: 8px;
      color: rgba(255,255,255,.55);
    }

    .content-block {
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .page {
        padding: 24px 14px 120px;
      }

      .page-head h1 {
        font-size: 22px;
      }
    }
/* Страница  GUIDE */

.wedding-checklist {
  max-width: 750px;
  margin: 60px auto;
  padding: 40px 30px;
  background: linear-gradient(135deg, #2e1c2b, #6c3c52);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 182, 193, 0.2);
  color: #fff;
  font-family: 'Playfair Display', serif;
  animation: fadeIn 1s ease-out;
}

.wedding-checklist h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #ffdee9;
  text-shadow: 0 0 10px rgba(255, 182, 193, 0.6);
}

.wedding-checklist h3 {
  margin-top: 30px;
  font-size: 22px;
  color: #ffe4f2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.wedding-checklist ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.wedding-checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}

.wedding-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffd6e8;
  font-weight: bold;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Анимация поочерёдно для списка */
.wedding-checklist li:nth-child(1) { animation-delay: 0.1s; }
.wedding-checklist li:nth-child(2) { animation-delay: 0.2s; }
.wedding-checklist li:nth-child(3) { animation-delay: 0.3s; }
.wedding-checklist li:nth-child(4) { animation-delay: 0.4s; }
.wedding-checklist li:nth-child(5) { animation-delay: 0.5s; }
.wedding-checklist li:nth-child(6) { animation-delay: 0.6s; }
.wedding-checklist li:nth-child(7) { animation-delay: 0.7s; }
.wedding-checklist li:nth-child(8) { animation-delay: 0.8s; }