/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

.header-title {
    font-size: 18px;
    color: #2a5b6c;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 300px;
}

.hero-content {
    position: relative;
    background-color: #2a5b6c;
    color: white;
    padding: 30px;
    text-align: center;
}

.hero-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 14px;
    line-height: 1.5;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .section {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .section-reverse {
        flex-direction: row-reverse;
    }

    .section-content {
        flex: 1;
    }

    .section-image {
        flex: 1;
    }
}

.section-title {
    color: #2a5b6c;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-text {
    margin-bottom: 20px;
    font-size: 14px;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
}

/* Room Types */
.room-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .room-types {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .room-card {
        flex: 1;
        min-width: 300px;
    }
}

.room-card {
    border: 1px solid #eaeaea;
    padding: 20px;
}

.room-title {
    color: #2a5b6c;
    font-size: 18px;
    margin-bottom: 10px;
}

.room-description {
    font-size: 14px;
    color: #666;
}

/* Features Section */
.features {
    background-color: #2a5b6c;
    color: white;
    padding: 30px;
    margin: 50px 0;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #336b7d;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-content h3 {
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #eaeaea;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.btn {
    background-color: #f5b941;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2a5b6c;
    color: white;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-title {
    color: #2a5b6c;
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-text {
    margin-bottom: 20px;
    font-size: 14px;
    color: #2a5b6c;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
}

.cookie-button {
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.cookie-accept-all {
    background-color: #f5b941;
    color: #333;
}

.cookie-accept-necessary {
    background-color: #f5f5f5;
    color: #2a5b6c;
}

.cookie-settings {
    background-color: #f5f5f5;
    color: #2a5b6c;
}