.price {
  padding: 100px 24px;
  overflow: hidden;
}

.price-container {
  position: relative;
  margin: 0 auto;
  max-inline-size: 1200px;
  align-content: center;
  padding-bottom: 100px;
}

.price-description {
  margin-top: 50px;
  text-align: center;
}

.price-table {
  width: 80%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: Montserrat, sans-serif;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin: 100px auto 0 auto;
}

.price-table th {
  background-color: #1f68bb;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

.price-table td {
  font-size: 16px;
}

/* Скругляем верхние углы у первого ряда */
.price-table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

.price-table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

.price-table td {
  border-top: 1px solid #ddd;
  padding: 10px;
}

/* Скругляем нижние углы у последней строки */
.price-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.price-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.price-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.price-table tr:hover {
  background-color: #f1f1f1;
}

.price-title {
  margin-top: 100px;
}

.price-items {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.price-items li {
  display: flex;
  align-items: center;
}

.price-items li svg {
  color: #e2e2e2;
  width: 100;
  height: 100;
  margin-bottom: 15px;
  margin: 0 10px;
}

.price-items button {
  font-family: Montserrat, sans-serif;
  font-weight: 550;
  font-size: 1rem;
  line-height: 18px;
  background: none;
  color: #2d2d2a;
  border: 1px solid transparent;
  border-radius: 25px;
  transition: all 0.1s ease-in-out;
  padding: .3rem .5rem;
}

.price-items button:hover {
  background-color: rgb(223, 223, 223);
  cursor: pointer;
}

.price-items .price-button_activated {
  background-color: #0c2542;
  color: #fff;
  padding: .4rem .6rem;
}

.price-items .price-button_activated:hover {
  background-color: #0c2542;
  color: #fff;
}

.costs-undertext {
  margin-top: 30px;
}