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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4c5b9;
}

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

.hero-content-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-intro {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.opening-text {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #3a3a3a;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.inline-image-section {
    margin: 48px 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #e8e3de;
    object-fit: cover;
}

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.services-preview {
    margin: 64px 0;
}

.services-preview h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.service-card-inline {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
    align-items: flex-start;
}

.service-card-inline.reverse {
    flex-direction: row-reverse;
}

.service-card-inline img {
    width: 45%;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: #e0d8cf;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h4,
.service-info h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    margin-bottom: 16px;
    font-size: 16px;
}

.service-details {
    list-style: none;
    margin: 20px 0;
}

.service-details li {
    padding: 6px 0;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2a5f4f;
    margin: 20px 0;
}

.cta-select-service {
    background-color: #3a7063;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

.cta-select-service:hover {
    background-color: #2d5a4f;
}

.testimonial-inline {
    background-color: #f9f7f5;
    padding: 32px;
    border-left: 4px solid #c5b5a5;
    margin: 40px 0;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #2a2a2a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    text-align: right;
}

.cta-content-block {
    background-color: #2c4a42;
    color: #fff;
    padding: 48px 40px;
    border-radius: 6px;
    text-align: center;
    margin: 56px 0;
}

.cta-content-block h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 26px;
}

.cta-content-block p {
    color: #e8e8e8;
    margin-bottom: 24px;
    font-size: 17px;
}

.cta-link-inline {
    display: inline-block;
    background-color: #fff;
    color: #2c4a42;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-link-inline:hover {
    background-color: #f0f0f0;
}

.disclaimer-section {
    background-color: #fef9f3;
    border: 1px solid #e8dcc8;
    padding: 24px;
    border-radius: 4px;
    margin: 48px 0;
}

.disclaimer-section p {
    font-size: 14px;
    color: #5a5a5a;
    margin-bottom: 0;
    line-height: 1.6;
}

.form-section {
    background-color: #f5f3f0;
    padding: 80px 24px;
    margin-top: 80px;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.booking-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2a2a2a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3a7063;
}

.submit-button {
    width: 100%;
    background-color: #3a7063;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.page-header {
    text-align: center;
    padding: 80px 24px 40px;
    background-color: #f8f6f3;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.contact-section,
.impressum-section {
    margin: 40px 0;
}

.contact-info {
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.contact-info p {
    line-height: 1.8;
    color: #4a4a4a;
}

.note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-page {
    padding: 100px 24px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2a5f4f;
    text-align: center;
}

.thanks-message {
    font-size: 19px;
    text-align: center;
    margin-bottom: 48px;
    color: #3a3a3a;
}

.next-steps {
    background-color: #f9f7f5;
    padding: 32px;
    border-radius: 6px;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.next-steps ol {
    margin-left: 24px;
}

.next-steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-info {
    margin: 40px 0;
    padding: 24px;
    background-color: #eef5f3;
    border-radius: 4px;
}

.thanks-info p strong {
    color: #2a5f4f;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #3a7063;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: #2d5a4f;
}

.info-section {
    background-color: #f9f7f5;
    padding: 40px;
    border-radius: 6px;
    margin: 56px 0;
}

.info-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
}

.site-footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 60px 40px 24px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #88c8b5;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #3a7063;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #2d5a4f;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #666;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-content-overlay h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 16px;
    }

    .service-card-inline {
        flex-direction: column;
    }

    .service-card-inline.reverse {
        flex-direction: column;
    }

    .service-card-inline img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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