main.content-section {
    background: #0f1115;
  color: #e6e6e6;
}
/* ===== MAIN CONTAINER ===== */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
}

/* ===== ARTICLE ===== */
.content-section article {
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

/* ===== HEADINGS ===== */
.content-section h1 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.content-section h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  border-left: 4px solid #ff7a00;
  padding-left: 12px;
}

/* ===== TEXT ===== */
.content-section p {
  margin-bottom: 15px;
  color: #ccc;
}

/* ===== LISTS ===== */
.content-section ul,
.content-section ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-section li {
  margin-bottom: 10px;
}

/* ===== FEATURES BLOCK ===== */
.features-list {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.features-list li strong {
  color: #ff7a00;
}

/* ===== PRICE BLOCK ===== */
.price-block {
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

/* Цена */
.price-box {
  font-size: 22px;
  margin: 20px 0;
  padding: 15px;
  background: #000;
  border-left: 4px solid #ff7a00;
}

.price-box strong {
  font-size: 28px;
  color: #00e676;
}

/* ===== IMAGES ===== */
.image-box {
  margin: 40px 0;
  text-align: center;
}

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

.image-box figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

/* ===== MATERIAL TYPES ===== */
.materials-list li {
  position: relative;
  padding-left: 18px;
}

.materials-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff7a00;
}

/* ===== PROCESS ===== */
.process ol {
  counter-reset: step;
}

.process li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: #ff7a00;
  color: #000;
  font-weight: bold;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 22px;
}

/* ===== GEO BLOCK ===== */
.geo {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  color: #000;
  border-radius: 12px;
  text-align: center;
}

.cta-block h2 {
  border: none;
  padding: 0;
  margin-bottom: 15px;
}

.cta-block p {
  color: #000;
  font-size: 18px;
}

.cta-block strong {
  font-size: 20px;
}

/* ===== LINKS ===== */
.content-section a {
  color: #ff7a00;
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (min-width: 768px) {
  .headerh1{
    display: flex;
    flex-direction: column;
  }
  .price-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
  }
  .price-block > h2,
  .price-block > p,
  .price-block > .price-box,
  .price-block > ul {
    grid-column: 1;
  }
  .price-block .image-box {
    grid-column: 2;
    grid-row: 1 / 5;
    margin: 0;
    text-align: center;
  }
  .price-block .image-box img {
    max-width: 100%;
    height: auto;
  }
  .content-section {
    padding: 20px 10px;
  }

  .content-section article {
    padding: 20px;
  }

  .content-section h1 {
    font-size: 26px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .price-box {
    font-size: 18px;
  }

  .price-box strong {
    font-size: 22px;
  }
}