/* General styling for the hotels section */
.about-section {
    background-color: #2f8006;
    color: white;
    padding: 90px 0 70px;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

.hotels-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Left Block: Heading */
.block-left {
    flex: 1;
}

.block-left h2 {
    font-family: 'Work Sans', serif;
    line-height: 150%;
    font-size: 40px;
    font-weight: bold;
}

/* Right Block: Text content */
.block-right {
    flex: 1;
    align-items: flex-start;
}

.block-right p {
    font-size: 18px;
    line-height: 30px;
}

/* Anchor link styling */
.block-right a {
    text-decoration: none;
}

.block-right a:hover {
    text-decoration: underline;
}

.hotel-image img {
    width: 450px;
    height: auto;
    border-radius: 3px;
    object-fit: cover;
}

.block-right h3 {
    font-family: 'Work Sans', serif;
    line-height: 150%;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 25px;
}

.block-left p {
    font-size: 18px;
}

.hotel-details {
    flex: 1;
}

.hotel-rating {
    font-size: 1.5rem;
    margin-top: 20px;
    align-self: flex-start;
}

.hotels-block {
    padding: 0 0 70px;
}

.next-block {
    padding: 80px 0 80px;
    border-top: 1px solid #ffffff;
}

/* Tabs Section */
.tabs-section {
    font-size: 18px;
    margin-top: 20px;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 30px;
}

.filter {
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    margin-right: 15px;
    cursor: pointer;
}

.filter.active {
    background-color: #ffffff;
    color: black
}

.finish-block {
    padding-bottom: 50px;
    border-top: 1px solid #ffffff;
}