* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1B6FA8;
    --text-dark: #000000;
    --text-body: #333333;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --border-color: #1B6FA8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-content {
    background: var(--bg-white);
    max-width: 700px;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.cookie-content h2 {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-body);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-accept,
.btn-refuse {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--text-dark);
    color: white;
}

.btn-accept:hover {
    background: #333;
}

.btn-refuse {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-refuse:hover {
    background: var(--text-dark);
    color: white;
}

/* Header */
.header {
    background: var(--bg-white);
    padding: 25px 0;
    border-bottom: 1px solid var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav a:hover {
    border-color: var(--border-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 76px);
    background: var(--bg-white);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: right 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--bg-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('./img/1.png') center/cover;
    display: flex;
    align-items: center;
    color: white;
    padding: 80px 0;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #145580;
    transform: translateY(-2px);
}

/* Room Types Section */
.room-types {
    padding: 80px 0;
    background: var(--bg-white);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.room-card {
    text-align: center;
    padding: 30px 20px;
}

.room-icon {
    margin-bottom: 20px;
}

.room-icon svg {
    color: var(--primary-blue);
}

.room-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.room-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
}

/* Recovery Section */
.recovery {
    padding: 80px 0;
    background: var(--bg-light);
}

.recovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recovery-text h2 {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.recovery-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.recovery-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

.recovery-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
}

.values h2 {
    text-align: center;
    font-size: 36px;
    font-style: italic;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.value-image {
    width: 100%;
    height: 250px;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: var(--text-dark);
}

.value-card p {
    padding: 0 25px 25px;
    line-height: 1.8;
    color: var(--text-body);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-white);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-style: italic;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 20px 20px;
    line-height: 1.7;
    color: var(--text-body);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-form-wrapper > p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-body);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form textarea {
    border-radius: 25px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(27, 111, 168, 0.1);
}

.btn-submit {
    background: var(--text-dark);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Thank You Page */
.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thank-you-content h1 {
    font-size: 42px;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.btn-return {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-return:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 42px;
    font-style: italic;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-body);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-body);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recovery-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .room-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values h2,
    .services h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .recovery-image img,
    .contact-image img {
        height: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        padding: 35px 25px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .thank-you-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-text {
        font-size: 15px;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }
}