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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b7355;
    letter-spacing: 1px;
}

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

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

.nav-links a:hover {
    color: #8b7355;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #ccc;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-weight: normal;
    letter-spacing: 1px;
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-text {
    margin: 4rem 0;
}

.lead {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.image-break {
    margin: 4rem 0;
    width: 100%;
}

.inline-image-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.inline-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    margin: 4rem 0;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #3a3a3a;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.services-preview {
    margin: 5rem 0;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2c2c2c;
}

.card-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.price {
    font-size: 1.3rem;
    color: #8b7355;
    font-weight: bold;
    margin: 1.5rem 0;
}

.select-service-btn {
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.select-service-btn:hover {
    background-color: #6f5a42;
}

.trust-section {
    margin: 5rem 0;
    background-color: #f5f3f0;
    padding: 4rem 0;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: normal;
    text-align: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b7355;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.cta-inline {
    margin: 4rem 0;
}

.cta-box {
    background-color: #ffffff;
    border: 2px solid #8b7355;
    padding: 3rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.inline-cta {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #6f5a42;
}

.form-section {
    margin: 5rem 0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.editorial-form {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e5e5e5;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fafaf8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.form-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.4rem;
}

.submit-btn {
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.submit-btn:hover {
    background-color: #6f5a42;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.final-image {
    margin: 4rem 0;
}

.disclaimer-section {
    margin: 4rem 0;
    padding: 2rem 0;
    background-color: #f9f9f7;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.main-footer {
    background-color: #3a3a3a;
    color: #d5d5d5;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: normal;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #d5d5d5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #555;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b7355;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6f5a42;
}

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f5f3f0;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b7355;
}

.thanks-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.back-link {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.back-link:hover {
    background-color: #6f5a42;
}

.page-header {
    padding: 4rem 0 2rem;
    background-color: #f5f3f0;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2c2c2c;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: normal;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #8b7355;
    font-weight: normal;
}

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

.team-section {
    margin: 4rem 0;
    background-color: #f5f3f0;
    padding: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.closing-text {
    margin: 4rem 0;
}

.closing-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #2c2c2c;
}

.service-price {
    font-size: 1.3rem;
    color: #8b7355;
    font-weight: bold;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.cta-section {
    margin: 5rem 0;
}

.contact-info {
    margin: 3rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #8b7355;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.no-link {
    color: #2c2c2c;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.impressum-section {
    margin: 4rem 0;
}

.legal-info h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-info a {
    color: #8b7355;
    text-decoration: none;
}

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

.directions-section {
    margin: 3rem 0;
}

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.directions-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.directions-list {
    list-style: none;
    padding-left: 0;
}

.directions-list li {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.directions-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.legal-content {
    margin-bottom: 3rem;
}

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: normal;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
    color: #555;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: normal;
    color: #666;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #8b7355;
    text-decoration: none;
}

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

.updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .narrow-container {
        padding: 0 1.5rem;
    }
}
