/* Удаляем стили для иконок функций */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.header {
    background: linear-gradient(135deg, #2c5f8a, #4a90c2);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: #87ceeb;
    text-decoration: none;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.navigation {
    background-color: #1a4a6b;
    padding: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.nav-item a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s;
}

.nav-item a:hover,
.nav-item.active a {
    background-color: #87ceeb;
    color: #1a4a6b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding: 40px 0;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c5f8a;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90c2, #87ceeb);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #4a90c2;
    margin-bottom: 15px;
}

.hero {
    background: linear-gradient(rgba(44, 95, 138, 0.8), rgba(74, 144, 194, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #87ceeb, #4a90c2);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 194, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90c2, #87ceeb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Удаляем стили для иконок функций */
.feature-icon {
    display: none;
}

.feature-card h3 {
    color: #2c5f8a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.amenities-list li {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #87ceeb;
    transition: all 0.3s ease;
    position: relative;
}

.amenities-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-left-color: #4a90c2;
}

.amenities-list li::before {
    content: "•";
    color: #4a90c2;
    font-weight: bold;
    margin-right: 10px;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5f8a, #4a90c2, #87ceeb);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 15px 20px;
    background: rgba(74, 144, 194, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4a90c2;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(74, 144, 194, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    min-width: 120px;
    font-weight: bold;
    color: #2c5f8a;
    font-size: 1rem;
}

.contact-item a {
    color: #4a90c2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #2c5f8a;
    text-decoration: underline;
}

.footer {
    background-color: #1a4a6b;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-main-card, .contact-booking-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-main-card::before, .contact-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5f8a, #4a90c2, #87ceeb);
}

.booking-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-method {
    padding: 25px;
    background: rgba(74, 144, 194, 0.05);
    border-radius: 12px;
    border-left: 4px solid #4a90c2;
    transition: all 0.3s ease;
}

.booking-method:hover {
    background: rgba(74, 144, 194, 0.1);
    transform: translateX(5px);
}

.booking-method h3 {
    color: #2c5f8a;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.booking-method p {
    color: #666;
    margin-bottom: 15px;
}

.booking-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #4a90c2, #2c5f8a);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 194, 0.3);
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.instagram-btn {
    background: linear-gradient(135deg, #e4405f, #c13584);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-btn:hover {
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.directions-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.direction-card, .info-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #87ceeb;
    transition: all 0.3s ease;
}

.direction-card:hover, .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.direction-card h3, .info-card h3 {
    color: #2c5f8a;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid #87ceeb;
    padding-bottom: 8px;
}

.route-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-item {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.route-item:last-child {
    border-bottom: none;
}

.route-item strong {
    color: #2c5f8a;
    display: inline-block;
    min-width: 100px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 20px;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: "•";
    color: #4a90c2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c5f8a, #4a90c2);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.intro-block {
    text-align: center;
    margin-bottom: 50px;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #87ceeb;
}

.philosophy-grid, .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card, .advantage-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 194, 0.1);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before, .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90c2, #87ceeb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.philosophy-card:hover::before, .advantage-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover, .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.philosophy-card h3, .advantage-card h3 {
    color: #2c5f8a;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.philosophy-card p, .advantage-card p {
    color: #666;
    line-height: 1.6;
}

.lake-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.lake-text h3 {
    color: #2c5f8a;
    margin-bottom: 12px;
    margin-top: 25px;
    font-size: 1.3rem;
}

.lake-text h3:first-child {
    margin-top: 0;
}

.lake-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lake-benefits {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left: 4px solid #4a90c2;
    position: sticky;
    top: 20px;
}

.lake-benefits h3 {
    color: #2c5f8a;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    color: #4a90c2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #2c5f8a, #4a90c2);
    color: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 95, 138, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 95, 138, 0.4);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
    opacity: 0.9;
    font-size: 0.9rem;
}

.final-about-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.final-about-cta h2 {
    color: #2c5f8a;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-about-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #2c5f8a;
    border: 2px solid #4a90c2;
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.2);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #4a90c2, #2c5f8a);
    color: white;
    border-color: #2c5f8a;
}

.rooms-intro {
    text-align: center;
    margin-bottom: 50px;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 194, 0.1);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.room-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4a90c2, #2c5f8a);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.room-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.room-title {
    color: #2c5f8a;
    font-size: 2rem;
    margin: 0;
}

.room-capacity {
    background: rgba(74, 144, 194, 0.1);
    color: #2c5f8a;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 194, 0.2);
}

.room-description {
    margin-bottom: 30px;
}

.room-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.room-features h3 {
    color: #2c5f8a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "•";
    color: #4a90c2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.room-booking {
    margin-top: auto;
}

.booking-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.book-btn {
    display: inline-block;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.primary-book {
    background: linear-gradient(135deg, #4a90c2, #2c5f8a);
    color: white;
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.3);
}

.primary-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 194, 0.4);
}

.whatsapp-book {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.accommodation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-block {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left: 4px solid #87ceeb;
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.info-block h3 {
    color: #2c5f8a;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid #87ceeb;
    padding-bottom: 8px;
}

.included-list, .rules-list, .booking-rules-list {
    list-style: none;
    padding: 0;
}

.included-list li, .rules-list li, .booking-rules-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
    color: #666;
    line-height: 1.5;
}

.included-list li:last-child, .rules-list li:last-child, .booking-rules-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: "✓";
    color: #4a90c2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.rules-list li::before, .booking-rules-list li::before {
    content: "•";
    color: #4a90c2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-top: 4px solid #4a90c2;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.service-card h3 {
    color: #2c5f8a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: "→";
    color: #4a90c2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.rooms-final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rooms-final-cta h2 {
    color: #2c5f8a;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.rooms-final-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.rooms-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .room-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .room-content {
        padding: 30px;
    }
    
    .room-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .accommodation-info {
        grid-template-columns: 1fr;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .book-btn {
        min-width: auto;
    }
    
    .rooms-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .room-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .room-image {
        min-height: 250px;
    }
    
    .rooms-final-cta {
        padding: 35px 25px;
    }
    
    .rooms-final-cta h2 {
        font-size: 1.8rem;
    }
}
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .nav-list {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .nav-list {
        flex-direction: column;
    }
    
    .nav-item a {
        text-align: center;
        padding: 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}