body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fafafa;
  color: #333;
}

h1, h2 {
  text-align: center;
  margin: 20px 0;
}

p {
  max-width: 800px;
  margin: 10px auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: #ff5722;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px auto;
  text-align: center;
}

.order-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #28a745; /* зелёная кнопка */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.order-btn:hover {
  background-color: #218838;
}

.composition-table {
  width: 100%;
  border-collapse: separate; /* меняем с collapse, чтобы скругления работали */
  border-spacing: 0;
  margin: 20px 0;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px; /* скруглённые углы */
  overflow: hidden;   /* чтобы скругления не ломались */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* лёгкая тень */
}

/* Заголовки */
.composition-table th {
  background-color: #f7f7f7;
  font-weight: 600;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
}

/* Ячейки */
.composition-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

/* Зебра */
.composition-table tr:nth-child(even) td {
  background-color: #fafafa;
}

/* Ховер */
.composition-table tr:hover td {
  background-color: #f1f1f1;
}

/* Первая и вторая колонка по центру */
.composition-table td:nth-child(1),
.composition-table td:nth-child(2),
.composition-table th:nth-child(1),
.composition-table th:nth-child(2) {
  text-align: center;
}

/* Картинки */
.composition-table td img {
  max-width: 60px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px; /* чуть скруглить картинки */
}

.reviews-section {
  padding: 40px 20px;
  background: #fafafa;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.review {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #eee;
}

.review-name {
  font-weight: bold;
  color: #222;
}

.review-stars {
  margin-left: auto;
  color: #ff9800;
  font-size: 18px;
}

.review-date {
  font-size: 12px;
  color: #888;
  margin-left: auto;
}

.review-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.review-photo {
  display: block;
  margin: 15px auto 0;
  max-width: 40%;
  border: 1px solid #eee;
}
.site-footer {
  text-align: center;
  font-size: 14px;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  background: #f9f9f9;
}
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

.faq-section h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
}

.faq-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px;
}
.product-block {
  text-align: center;
  margin: 40px 0;
}

.product-block img {
  max-width: 250px;
  margin: 20px auto;
  display: block;
}

.order-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #28a745;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-btn:hover {
  background-color: #218838;
}

.hero-section {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.privacy-policy {
  text-align: left;
}

.privacy-policy ul {
  margin-left: 20px;
}

.back-button {
  display: inline-block;
}


.privacy-container ul,
.privacy-container ol {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 20px;
  list-style-position: inside;
  text-align: left;
}

.benefits {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  list-style-position: inside;
  text-align: left;
}

.benefits li {
  margin: 8px 0;
  font-size: 18px;
}
