/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    position: absolute;
    font-family: 'Montserrat', Arial, sans-serif;
    background: white;
}
main{
    flex: 1;
}
body.lock {
    overflow: hidden;
}
/*--------------------*/
.header__container {
    max-width: 1315px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
}
.header__logo h1 {
    color: #00973A;
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    transition: transform 0.3s ease, color 0.3s ease;
}
.header__logo h1:hover {
    transform: scale(1.05);
    color: #00aa3b;
}
.header__navigation a {
    color: #00491D;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    position: relative;
    transition: color 0.3s ease;
}
.header__navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #00491D;
    transition: width 0.3s ease;
}
.header__navigation a:hover {
    color: #00672c;
}
.header__navigation a:hover::after {
    width: 100%;
}
.header__navigation {
    max-width: 850px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-button {
    max-width: 153px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    border-radius: 13px;
    background: linear-gradient(94deg, #00EB5B 0%, #008534 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 220, 4, 0.4);
}
.header__navigation button {
    background: none;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    line-height: normal;
    cursor: pointer;
    transition: color 0.3s ease;
}
.header__navigation button:hover {
    color: #ffffff;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}
.header__burger span {
    display: block;
    height: 3px;
    background: #008534FF;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.menu-close {
    display: none;
}
/*--------------------*/
.hero{
    background: url('../images/hero-back.png') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding: 62px 20px;
    text-align: center;
}
.hero__container{
    max-width: 1200px;
    margin: 0 auto;
    text-align: start;
}
.hero__container h2{
    color: #FFF;
    text-align: start;
    font-size: 36px;
    line-height: normal;
    margin-bottom: 20px;
    max-width: 745px;
    font-style: normal;
    font-weight: 800;
}
.hero__container p{
    max-width: 842px;
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*--------------------*/
.about{
    padding: 70px 20px;
}
.about__container {
    max-width: 1315px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 65px;
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*gap: 15px;*/
}
.about__block{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.about__image img {
    max-width: 605px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 42px;
    border: 2px solid #00FF37;
    box-shadow: 0 0 10px 5px rgba(0, 255, 55, 0.25);
}
.about__image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 8px 25px rgba(24, 110, 0, 0.3);
}
.about__text {
    max-width: 605px;
}
.about__text h2 {
    color: #006527;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
    font-size: 36px;
    font-style: normal;
    transition: transform 0.3s ease, color 0.3s ease;
}
.about__text h2:hover {
    transform: translateY(-3px);
    color: #28dc00;
}
.about__text p {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
}
.about__text p:hover {
    color: #006527;
    transform: translateX(5px);
}
.about__text ul li{
    color: #333;
    font-size: 16px;
    font-style: normal;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-left: 20px;
    font-weight: 400;
    line-height: 1.5;
}
.about__text ul li:hover{
    color: #006527;
    transform: translateX(5px);
}
/*--------------------*/
.hotels {
    padding: 70px 20px;
    background: #F9FFF9;
}
.hotels__container {
    max-width: 1315px;
    margin: 0 auto;
}
.hotels__title {
    color: #006527;
    font-weight: 700;
    margin-bottom: 60px;
    transition: color 0.3s ease;
    text-align: center;
    font-size: 36px;
}
.hotels__title:hover {
    color: #1ddc00;
}
.hotels__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.hotels__main-block {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 32px;
}
.hotels__main-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 186px 52px 0 rgba(0, 255, 55, 0.00), 0 119px 48px 0 rgba(0, 255, 55, 0.01), 0 67px 40px 0 rgba(0, 255, 55, 0.05), 0 30px 30px 0 rgba(0, 255, 55, 0.08), 0 7px 16px 0 rgba(0, 255, 55, 0.09);
}
.hotels__main-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 16px;
    transition: transform 0.4s ease;
}
.hotels__main-block:hover img {
    transform: scale(1.02);
}
.hotels__main-block h3 {
    color: #006527;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}
.hotels__main-block:hover h3 {
    color: #28dc00;
}
.hotels__main-block p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.hotels__main-block:hover p {
    color: #111;
}
.hotels__main-block span {
    font-weight: bold;
}
.hotels__main-block:nth-child(5) {
    grid-column: 1 / -1;
}
.hotels__main-block a{
    max-width: 153px;
    width: 100%;
    padding: 12px 0;
    border-radius: 13px;
    background: linear-gradient(94deg, #00EB5B 0%, #008534 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hotels__main-block a:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(48, 220, 0, 0.4);
}
/*--------------------*/
.choose {
    padding: 70px 20px;
}
.choose__container {
    max-width: 1315px;
    margin: 0 auto;
}
.choose__title {
    color: #006527;
    text-align: center;
    margin-bottom: 32px;
    transition: color 0.3s ease;
    font-size: 36px;
    font-weight: 700;
}
.choose__title:hover {
    color: #30dc00;
}
.choose__main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}
.choose__main-block {
    max-width: 573px;
    width: 100%;
    min-height: 332px;
    background: #F2FFEF;
    box-shadow: 0 0 10px 5px rgba(0, 255, 55, 0.25);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    text-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.choose__main-block:hover {
    transform: translateY(-4px) scale(1.02);
}
.choose__main-block img {
    margin-bottom: 12px;
    width: 60px;
    height: auto;
    transition: transform 0.4s ease;
}
.choose__main-block:hover img {
    transform: translateY(-4px) scale(1.02);
}
.choose__main-block h3 {
    color: #006527;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 22px;
    font-weight: 700;
}
.choose__main-block:hover h3 {
    color: #30dc00;
}
.choose__main-block p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.choose__main-block:hover p {
    color: #111;
}
/*--------------------*/
.footer {
    background: linear-gradient(94deg, #023500 0%, #00542B 100%);    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Inter", sans-serif;
}
.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}
.footer__col h3 {
    color: #FFF;
    font-weight: 600;
    line-height: 37.8px;
    font-size: 24px;
    font-style: normal;
    letter-spacing: 0.28px;
    margin-bottom: 15px;
    padding-bottom: 7px;
    border-bottom: 2px solid #1F0;
}
.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__col ul li {
    margin-bottom: 15px;
    color: #EEE;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.footer__col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer__col ul li a:hover {
    color: #289a00;
}
.footer__about h2.footer__logo {
    color: #FFF;
    font-size: 37px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 10px;
}
.footer__about p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.6px;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__col h3 {
        margin-top: 20px;
    }
}
/*------------*/
.contact {
    padding: 70px 20px;
    background: #f9f9ff;
}
.contact__container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact h2 {
    text-align: center;
    color: #006527;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}
.contact__subtitle {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}
.contact__content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.contact__form, .contact__info {
    flex: 1 1 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 39, 110, 0.1);
    padding: 30px;
}
.contact__form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    border-color: #37dc00;
}
.contact__form textarea {
    min-height: 120px;
    resize: vertical;
}
.contact__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    margin: 10px 0;
    cursor: pointer;
}
.contact__checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #3edc00;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact__checkbox input[type="checkbox"]:checked {
    background: #3edc00;
    border-color: #49dc00;
}
.contact__checkbox input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    color: #fff;
    font-size: 12px;
    left: 3px;
    top: -1px;
}
.contact__checkbox a {
    color: #004EDC;
    text-decoration: none;
}
.contact__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.btn {
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(94deg, #023500 0%, #00542B 100%);
    color: #fff;
    border: none;
}
.btn-primary:hover {
    opacity: 0.9;
}
.btn-secondary {
    border: 2px solid #30dc00;
    color: #49dc00;
    background: #fff;
}
.btn-secondary:hover {
    background: #37dc00;
    color: #fff;
}
.contact__info h3 {
    color: #006527;
    font-size: 22px;
    margin-bottom: 15px;
}
.contact__info p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}
.contact__map iframe {
    margin-top: 15px;
    border-radius: 10px;
}
/*----------*/
.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}
.popup__content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(20, 110, 0, 0.35);
    animation: scaleIn 0.3s ease;
}
.popup__content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #006527;
    margin-bottom: 10px;
}
.popup__content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}
.popup__content button {
    background: linear-gradient(94deg, #023500 0%, #00542B 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.popup__content button:hover {
    background: linear-gradient(94deg, #00542B 0%, #023500 100%);
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes scaleIn {
    from {transform: scale(0.9);}
    to {transform: scale(1);}
}
/*------------------*/
.policy {
    padding: 60px 20px;
    background: #f9f9ff;
}
.policy__container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.policy__container p,
.policy__container li {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
.policy__container ul {
    padding-left: 20px;
    margin: 15px 0;
}
.policy__container a {
    color: #004EDC;
    font-weight: 500;
    text-decoration: underline;
}
.policy__container a:hover {
    text-decoration: none;
}
.policy__container h3 {
    color: #07dc00;
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 10px;
}
.policy__container h2 {
    color: #006527;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/*-------------*/
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.93);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 0 10px;
}
.popup-box {
    background: #fff;
    border-radius: 12px;
    padding: 73px 40px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 0 25px rgba(26, 118, 0, 0.5);
    border: 2px solid #28dc00;
    animation: fadeIn 0.3s ease-in-out;
}
.popup-box h3 {
    color: #006527;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.popup-btn {
    padding: 10px 25px;
    border: 2px solid #006527;
    border-radius: 8px;
    background: #fff;
    color: #006527;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 19px;
}
.popup-btn:hover {
    background: linear-gradient(94deg, #023500 0%, #00542B 100%);
    color: #fff;
    transform: translateY(-2px);
}
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}
/*-------------------*/
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 20px;
    margin-left: 20px;
    font-family: "Inter", Arial, sans-serif;
    color: #333;
    z-index: 9999;
    animation: fadeInUp 0.4s ease;
}
.cookie-banner h3 {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 14px;
    color: #006527;
    border-bottom: 1px solid #c3ffab;
}
.cookie-banner p {
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #444;
    margin-top: 12px;
}
.cookie-banner .buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.cookie-banner button {
    /*flex: 1;*/
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}
.cookie-banner .accept {
    background: linear-gradient(94deg, #023500 0%, #00542B 100%);
    color: #fff;
}
.cookie-banner .accept:hover {
    opacity: 0.9;
}
.cookie-banner .necessary {
    background: #f1f1f1;
    color: #333;
}
.cookie-banner .necessary:hover {
    background: #e3e3e3;
}
.cookie-banner .footer_form {
    font-size: 12px;
    color: #777;
    border-top: 1px solid #b1ffab;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
}
.cookie-banner .footer_form a {
    color: #006527;
    font-weight: 600;
    text-decoration: none;
}
.cookie-banner .footer a:hover {
    text-decoration: underline;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/*\---------------*/
@media (max-width: 1100px) {
    .header__burger {
        display: flex;
    }
    .header__navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 25px;
        box-shadow: -2px 0 15px rgba(0,0,0,0.15);
        transition: right 0.3s ease-in-out;
        z-index: 1002;
    }
    .header__navigation.active {
        right: 0;
    }
    .header__navigation a {
        font-size: 18px;
        font-weight: 600;
        color: #00491D;
        width: 100%;
        text-align: left;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    .header__navigation a:last-child {
        border-bottom: none;
    }
    .header-button {
        margin-top: auto;
        width: 100%;
    }
    .header__navigation button {
        width: 100%;
        padding: 12px 0;
        font-size: 18px;
        font-weight: 700;
        border-radius: 10px;
        background: linear-gradient(94deg, #00EB5B 0%, #008534 100%);
    }
    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 42px;
        font-weight: 600;
        color: #008534FF;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    .menu-close:hover {
        transform: rotate(90deg);
        color: #28dc00;
    }
    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}
@media (max-width: 1024px) {
    .hero__container {
        padding: 25px 18px;
    }
    .hero__container h2 {
        font-size: 30px;
    }
    .hero__container p {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }
    .hero__container {
        border-radius: 20px;
        padding: 20px 15px;
    }
    .hero__container h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .hero__container p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 30px 10px;
    }
    .hero__container h2 {
        font-size: 22px;
    }
    .hero__container p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .about__container {
        gap: 30px;
    }
    .about__text h2 {
        font-size: 30px;
    }
    .about__text p {
        font-size: 15px;
        line-height: 1.5;
    }
    .about__image img {
        max-width: 380px;
    }
}
@media (max-width: 875px) {
    .about__container {
    }
    .about__block{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about__image img {
        /*max-width: 100%;*/
        /*height: auto;*/
    }
    .about__text {
        max-width: 100%;
    }
    .about__text h2 {
        font-size: 26px;
    }
    .about__text p {
        font-size: 15px;
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .about {
        padding: 40px 15px;
    }
    .about__text h2 {
        font-size: 22px;
    }
    .about__text p {
        font-size: 14px;
        line-height: 1.4;
    }
    .about__image{
        display: flex;
        justify-content: center;
    }
    .about__image img{
        max-width: 90%;
    }
}


@media (max-width: 900px) {
    .hotels__main {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1200px) {
    .hotels__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .hotels__main-block h3 {
        font-size: 22px;
    }
    .hotels__main-block p {
        font-size: 15px;
        line-height: 1.5;
    }
}
@media (max-width: 900px) {
    .hotels {
        padding: 50px 15px;
    }
    .hotels__title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    .hotels__main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .hotels__main-block {
        padding: 24px;
    }
    .hotels__main-block h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .hotels__main-block p {
        font-size: 15px;
    }
}
@media (max-width: 600px) {
    .hotels {
        padding: 40px 12px;
    }
    .hotels__title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .hotels__main-block {
        padding: 18px;
        border-radius: 24px;
    }
    .hotels__main-block img {
        border-radius: 20px;
        margin-bottom: 12px;
    }
    .hotels__main-block h3 {
        font-size: 18px;
    }
    .hotels__main-block p {
        font-size: 14px;
        line-height: 1.4;
    }
}


@media (max-width: 900px) {
    .choose__main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 1200px) {
    .choose__title {
        font-size: 32px;
        margin-bottom: 28px;
    }
    .choose__main {
        gap: 25px;
    }
    .choose__main-block h3 {
        font-size: 20px;
    }
    .choose__main-block p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .choose {
        padding: 50px 15px;
    }
    .choose__title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .choose__main {
        gap: 20px;
    }
    .choose__main-block {
        padding: 20px 15px;
        border-radius: 25px;
    }
    .choose__main-block img {
        width: 50px;
        margin-bottom: 10px;
    }
    .choose__main-block h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .choose__main-block p {
        font-size: 14px;
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    .choose {
        padding: 40px 10px;
    }
    .choose__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .choose__main-block {
        padding: 15px 12px;
        border-radius: 20px;
    }
    .choose__main-block img {
        width: 45px;
    }
    .choose__main-block h3 {
        font-size: 17px;
    }
    .choose__main-block p {
        font-size: 13px;
    }
}