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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #7ba591;
    --accent-color: #d4a574;
    --text-dark: #1a2f2a;
    --text-light: #f5f5f5;
    --background-light: #fafaf8;
    --background-overlay: rgba(28, 47, 42, 0.75);
    --card-bg: #ffffff;
    --border-subtle: #e2e8e4;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

img {
    object-fit: cover;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #c49360;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 3px;
    margin: 0 20px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), var(--background-overlay));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-block {
    text-align: center;
    color: var(--text-light);
    max-width: 850px;
    padding: 40px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #c49360;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.story-section {
    padding: 120px 20px;
    background: var(--card-bg);
}

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

.story-section h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.inline-visual {
    margin: 50px 0;
    background-color: var(--border-subtle);
}

.inline-visual img {
    width: 100%;
    height: auto;
}

.benefits-grid {
    padding: 100px 20px;
    background: var(--background-light);
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.section-heading-centered {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.cards-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-image-top {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--border-subtle);
}

.card-image-top img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonial-inline blockquote {
    border-left: none;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.85;
}

.service-reveal {
    padding: 110px 20px;
    background: var(--card-bg);
}

.large-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 70px;
    color: #666;
}

.services-flexible {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    min-width: 400px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background-color: var(--border-subtle);
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.service-details-list span {
    background: var(--background-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.price-note {
    font-size: 0.95rem;
    color: #777;
}

.select-service-btn {
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #c49360;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 165, 116, 0.3);
}

.form-section {
    padding: 100px 20px;
    background: var(--background-light);
}

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

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 50px;
    color: #666;
}

.booking-form {
    background: var(--card-bg);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-subtle);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #234b3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 95, 79, 0.3);
}

.final-cta {
    padding: 100px 20px;
    background: var(--card-bg);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-button-large {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #c49360;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 165, 116, 0.4);
}

.disclaimer-section {
    padding: 50px 20px;
    background: #f0f0f0;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.thanks-container {
    max-width: 700px;
    margin: 150px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.selected-service-info {
    background: var(--background-light);
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
}

.selected-service-info strong {
    color: var(--primary-color);
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #234b3d;
    transform: translateY(-2px);
}

.page-header-simple {
    margin-top: 70px;
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-header-simple h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-simple p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.content-section {
    padding: 80px 20px;
    background: var(--card-bg);
}

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

.content-wrapper h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.content-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-wrapper ul {
    margin: 20px 0 20px 30px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .nav-container {
        padding: 15px 20px;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-visual {
        min-width: 100%;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .section-heading-centered {
        font-size: 2rem;
    }

    .large-heading {
        font-size: 2.2rem;
    }

    .cards-layout {
        flex-direction: column;
    }

    .benefit-card {
        max-width: 100%;
    }
}