        /* =========================
   COMMON SECTIONS (E-E-A-T / FAQ)
========================= */

.sect {
  padding: 80px 0;
  background-color: #fff;
}

.sect:nth-child(even) {
  background-color: #f7f8fa; /* легкое разделение блоков */
}

.sect .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADINGS
========================= */

.sect h2 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.sect h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-top: 32px;
  margin-bottom: 10px;
}

/* =========================
   TEXT
========================= */



.sect strong {
  color: #000;
  font-weight: 600;
}

/* =========================
   E-E-A-T LIST
========================= */

.sect ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.sect ul li {
  background: #f1f3f6;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sect ul li::before {
  content: "✔";
  color: #cd8612;
  font-weight: 700;
  font-size: 16px;
}

/* =========================
   FAQ BLOCK
========================= */

.sect h3 + p {
  padding-left: 18px;
  border-left: 3px solid #cd8612;
  background: #f9faff;
  border-radius: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .sect {
    padding: 50px 0;
  }

  .sect h2 {
    font-size: 28px;
  }

  .sect h3 {
    font-size: 20px;
  }

  .sect p {
    font-size: 16px;
  }
}