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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #dfe4e8;
    border-radius: 4px;
    background: #f8f9fa;
}

.hero-visual-large {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.intro-statement {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
}

.visual-feature-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.feature-visual {
    flex: 1;
    background-color: #e8ebe8;
}

.feature-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    padding: 4rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.services-visual-grid {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 3rem;
    color: #1a1a1a;
}

.service-cards-visual {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-visual {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-visual:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #dfe4e8;
    min-height: 350px;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.9rem 1.8rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.trust-indicator-section {
    padding: 6rem 2rem;
    background-color: #f0f4f1;
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-inline {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.testimonial-inline p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.inquiry-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container-visual {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.reservation-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.form-field {
    margin-bottom: 1.8rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #dfe4e8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.form-field input[readonly] {
    background-color: #e8ebe8;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #234a30;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-actions a {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-decoration: underline;
}

.page-hero-minimal {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #f0f4f1 0%, #e8ebe8 100%);
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-content-centered p {
    font-size: 1.3rem;
    color: #4a5568;
}

.about-story {
    padding: 5rem 2rem;
}

.story-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.about-story h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-full {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual-large {
    flex: 1;
    background-color: #e8ebe8;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual-large img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info-block {
    flex: 1;
}

.service-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.service-info-block p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-includes {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.service-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

.contact-layout {
    padding: 4rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info-block > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5f3f;
}

.contact-value {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.contact-visual {
    flex: 1;
    background-color: #e8ebe8;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.additional-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.process-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.faq-section {
    padding: 5rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d5f3f;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-container {
    margin-top: 80px;
    padding: 5rem 2rem;
    min-height: calc(100vh - 500px);
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4a5568;
    line-height: 1.7;
}

.inquiry-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.inquiry-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.inquiry-details p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.next-steps {
    background: #f0f4f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 0.8rem 0 0.8rem 3rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.button-primary,
.button-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.button-primary {
    background-color: #2d5f3f;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
}

.button-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.contact-support {
    padding-top: 2rem;
    border-top: 1px solid #dfe4e8;
}

.contact-support p {
    font-size: 1rem;
    color: #7f8c8d;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    min-height: calc(100vh - 500px);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2d5f3f;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dfe4e8;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .visual-feature-split,
    .service-card-visual,
    .service-full,
    .contact-grid {
        flex-direction: column;
    }

    .service-card-visual:nth-child(even),
    .service-full:nth-child(even) {
        flex-direction: column;
    }

    .testimonial-grid,
    .values-grid,
    .process-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}