.iptext .gallery {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.iptext .gallery img {
    width: 30%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.iptext img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

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

.iptext li {
    font-size: 16px;
}

.iptext ul {
    list-style: initial;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.iptext h1 {
    font-size: 36px !important;
    font-family: "RobotoSlabRegular" !important;
    font-weight: bold;
    color: #37474f !important;
    text-transform: uppercase !important;
	margin-top: 70px !important;
    margin-bottom: 30px !important;
}

.iptext h2 {
    font-size: 30px !important;
    font-family: "RobotoSlabRegular" !important;
    color: #37474f !important;
    margin-bottom: 15px !important;
    margin-top: 30px !important;
}

@media (max-width: 768px) {
    .iptext h1 {
        font-size: 24px !important;
    }
}

@media (max-width: 768px) {
    .iptext .gallery {
        flex-direction: column;
        align-items: center;
    }
    .iptext .gallery img {
        width: 80%;
        margin-bottom: 20px;
    }
    .iptext img {
        width: 90%;
        margin-bottom: 20px;
    }
}
.iptext-prices-top-block {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

.iptext-price-card {
  width: 400px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.iptext-price-card1 {
  width: 45%;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.iptext-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0094cb;
  padding: 10px 0;
  margin: 0 0 15px;
  border-radius: 3px;
}

.iptext-description {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.iptext-price {
  font-size: 22px;
  font-weight: bold;
  color: #0094cb;
  margin: 15px 0;
}

.iptext-buttons {
  display: flex;
  justify-content: center;
}

.iptext-buttons .responsible__write {
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.iptext-buttons .responsible__write:hover {
  background-color: #45a049;
}

@media (max-width: 768px) {
  .iptext-price-card {
    width: 90%;
    margin: 10px auto;
  }

  .iptext-title {
    font-size: 18px;
  }

  .iptext-price {
    font-size: 20px;
  }

  .iptext-buttons .responsible__write {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .iptext-price-card {
    width: 100%;
  }

  .iptext-title {
    font-size: 16px;
  }

  .iptext-description {
    font-size: 13px;
  }

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

  .iptext-buttons .responsible__write {
    padding: 8px 16px;
    font-size: 12px;
  }
}