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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #ffffff;
}

.navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-light);
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #444;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e4df;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #234a3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 79, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.intro-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #d4cdc4;
}

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.service-select {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #234a3c;
}

.booking-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.booking-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.selected-display {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-top: 1.5rem;
}

.selected-display h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selected-display p {
    font-size: 1rem;
    color: #666;
}

.booking-form {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234a3c;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-light);
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial .author {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff8f0;
    border-top: 3px solid var(--accent-color);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

.footer-col a {
    display: block;
    margin-bottom: 0.7rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px 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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-accept:hover {
    background: #234a3c;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

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

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 1.2rem;
    color: #555;
}

.team-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner .cta-primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-banner .cta-primary:hover {
    background: var(--bg-light);
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-full {
    margin-bottom: 4rem;
}

.service-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-full.reverse .service-content-split {
    flex-direction: row-reverse;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

.service-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-details ul li {
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 1rem;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-visual {
    flex: 1;
    background-color: #e8e4df;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.booking-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8e4df;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.impressum-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.impressum-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.impressum-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.thanks-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.7;
}

.confirmation-box {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin: 2rem 0;
}

.confirmation-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.confirmation-box p {
    font-size: 1rem;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e4df;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

    .hero-right {
        min-height: 350px;
    }

    .intro-split,
    .about-split,
    .booking-split,
    .team-split,
    .contact-split,
    .service-content-split,
    .thanks-section {
        flex-direction: column;
    }

    .service-full.reverse .service-content-split {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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

    .services-grid {
        flex-direction: column;
    }

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