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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e67e22;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fef5e7;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d35400;
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-right p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555;
}

.features-grid {
    background-color: #f8f9fa;
    padding: 80px 25px;
}

.features-grid h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1 1 calc(50% - 30px);
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e67e22;
}

.feature-card p {
    font-size: 16px;
    color: #555;
}

.services-preview {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.services-text {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-text p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.inline-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.inline-link:hover {
    color: #d35400;
}

.services-image {
    flex: 1;
}

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

.testimonials {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 25px;
}

.testimonials h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #e67e22;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #fef5e7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 17px;
    color: #555;
}

.form-container {
    flex: 1;
    padding: 50px 60px;
    background-color: #ffffff;
}

.reservation-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.reservation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.submit-button {
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #229954;
}

.trust-section {
    text-align: center;
    padding: 80px 25px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 50px 25px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    text-align: center;
    font-size: 14px;
}

.disclaimer {
    margin-top: 15px;
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-header {
    background-color: #fef5e7;
    padding: 80px 25px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 20px;
    color: #555;
}

.services-main {
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

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

.service-details {
    flex: 1;
    padding: 60px 50px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.amenities {
    list-style: none;
    margin-bottom: 30px;
}

.amenities li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.amenities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
}

.service-cta:hover {
    background-color: #d35400;
}

.services-cta {
    text-align: center;
    padding: 80px 25px;
    background-color: #f8f9fa;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.about-story {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
}

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

.story-content {
    flex: 1;
    padding: 70px 60px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 25px;
    background-color: #f8f9fa;
}

.mission-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-card {
    flex: 1 1 calc(50% - 30px);
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e67e22;
}

.mission-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.values-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.values-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.values-image {
    flex: 1;
}

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

.team-section {
    padding: 80px 25px;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-section p {
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 80px 25px;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.contact-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
}

.contact-card {
    background-color: #fef5e7;
    padding: 40px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e67e22;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 80px 25px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.help-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.help-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.help-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e67e22;
}

.help-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.visit-us {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.visit-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.visit-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.visit-image {
    flex: 1;
}

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

.thanks-main {
    padding: 80px 25px;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info ol {
    padding-left: 25px;
}

.thanks-info li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-contact {
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 25px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: #e67e22;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-split,
    .intro-section,
    .services-preview,
    .cta-split,
    .about-story,
    .values-split,
    .contact-main,
    .visit-us,
    .service-item {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-right,
    .services-text,
    .cta-content,
    .form-container,
    .story-content,
    .values-content,
    .contact-info,
    .visit-content,
    .service-details {
        padding: 40px 25px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 32px;
    }

    .intro-right h2,
    .services-text h2,
    .cta-content h2,
    .story-content h2,
    .values-content h2,
    .visit-content h2,
    .cta-about h2,
    .services-cta h2 {
        font-size: 28px;
    }

    .features-grid h2,
    .testimonials h2,
    .trust-section h2,
    .mission-section h2,
    .team-section h2,
    .contact-additional h2 {
        font-size: 30px;
    }

    .feature-card,
    .mission-card {
        flex: 1 1 100%;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}