/* === БАЗА === */
.content-section {
  background-color: black;
  color: white;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === HERO === */
.headerh1 {
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* === КАРТИНКИ === */
.image-box {
  margin: 20px 0;
  text-align: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.image-box figcaption {
  font-size: 13px;
  margin-top: 6px;
  color: #666;
}

/* === ТАБЛИЦА === */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.price-table th {
  text-align: left;
}

/* === GRID (mobile-first) === */
.price-grid,
.types-grid {
  display: block;
}

/* === DESKTOP === */
@media (min-width: 768px) {
  .headerh1 {
    display: flex;
    flex-direction: column;
  }
  .price-grid,
  .types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }
 .price-table {
   max-width: 600px;
 }
  
  .hero-cta {
    gap: 15px;
  }
}