.price {
    padding: 165px 0 180px;
}
.price .title {
    margin-bottom: 105px;
}
.price .tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.price .tab-button {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.price .tab-button.active,
.price .tab-button:hover {
  background-color: #F5914F;
  color: white;
}
.price .tab-content {
  display: none;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.price .tab-content.active {
    display: flex;
}
.price .columns {
  display: flex;
  gap: 20px;
}
.price .column {
  flex: 1;
}
.price .item {
    width: calc(50% - 15px);
}
.price .item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}
.price .item-name {
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}
.price .item-price {
  color: #F5914F;
  font-size: 20px;
  font-weight: bold;
}
.price .item-description {
  font-style: italic;
  color: #777;
}
.price hr {
    margin: 5px 0;
    background-color: #ededed;
    border: 1px solid #ededed !important;
    opacity: 1;
    color: #bcbcbc;
}

.header.content-page {
    position: static;
}

.header.content-page .header__menu ul li a {
    color: #333;
}

@media screen and (max-width: 1200px) {
    .price .item-name, .price .item-price {
        font-size: 18px;
    }
}


@media screen and (max-width: 991px) {
    .price .item-name, .price .item-price {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .price .item {
        width: 100%;
    }
    .price .tab-buttons {
        flex-wrap: wrap;
    }
}



.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
.news-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border-radius: 4px;
}

.news-item h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
    line-height: 1.1;
}
.news-image {
    margin: 10px 0;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-date {
    font-size: 0.875em;
    color: #666;
    margin-bottom: 15px;
}
.news-content {
    font-size: 16px;
    line-height: 1.6;
}
.news-content .btn.read-more {
    padding: 10px 15px;
    min-height: 0;
}

@media (max-width: 991px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }   
}
@media (max-width: 575px) {
    .news-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}


