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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-notice {
    font-size: 13px;
    color: #888;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #faf8f5;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

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

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-large:hover {
    background: #73603f;
}

.intro-offset {
    padding: 100px 0;
    background: #ffffff;
}

.offset-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.offset-text {
    flex: 1.2;
}

.offset-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.offset-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.offset-visual {
    flex: 0.8;
}

.stat-card {
    background: linear-gradient(135deg, #8b7355 0%, #a89176 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    line-height: 1.4;
}

.services-showcase {
    padding: 100px 0;
    background: #f9f7f4;
}

.section-header-right {
    text-align: right;
    margin-bottom: 60px;
}

.section-header-right h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.section-header-right p {
    font-size: 19px;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-full {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card-full .service-image,
.service-card-full .service-info,
.service-card-full .service-info-first {
    flex: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
}

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

.service-info,
.service-info-first {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3,
.service-info-first h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p,
.service-info-first p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 30px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #73603f;
}

.service-card-half {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card-half .service-image {
    height: 300px;
}

.service-card-half .service-info {
    padding: 30px;
}

.service-card-half .service-info h3 {
    font-size: 22px;
}

.services-grid-split > div:nth-child(2) {
    display: flex;
    gap: 30px;
}

.services-grid-split > div:nth-child(3) {
    display: flex;
    gap: 30px;
}

.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5ddd0;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.cta-asymmetric {
    padding: 80px 0;
    background: #8b7355;
}

.cta-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1.3;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-image {
    flex: 0.7;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.contact-form-section {
    padding: 100px 0;
    background: #faf8f5;
}

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

.form-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.form-row .form-group {
    flex: 1;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #73603f;
}

.footer {
    background: #2d2d2d;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #a89176;
}

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

.btn-primary {
    padding: 10px 24px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #73603f;
}

.btn-secondary {
    padding: 10px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.page-hero {
    padding: 80px 0 60px;
    background: #f9f7f4;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-story {
    padding: 80px 0;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 0.9;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.story-text {
    flex: 1.1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: #f9f7f4;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.approach-section {
    padding: 80px 0;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1.1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.approach-image {
    flex: 0.9;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.team-section {
    padding: 80px 0;
    background: #f9f7f4;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.team-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    gap: 50px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-display {
    font-size: 26px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-detail-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-size: 20px;
}

.service-detail-image {
    flex: 0.9;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.service-cta {
    padding: 80px 0;
    background: #f9f7f4;
    text-align: center;
}

.service-cta h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 0;
}

.impressum-content h2,
.impressum-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.impressum-content h2 {
    font-size: 28px;
}

.impressum-content h3 {
    font-size: 22px;
}

.impressum-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.legal-section {
    padding: 60px 0 80px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #8b7355;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-confirmation {
    font-size: 17px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary-link {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #8b7355;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #8b7355;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-secondary-link:hover {
    background: #8b7355;
    color: #ffffff;
}

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }

    .offset-layout,
    .story-layout,
    .approach-layout,
    .cta-layout {
        flex-direction: column;
    }

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

    .service-card-full,
    .service-detail-card {
        flex-direction: column;
    }

    .services-grid-split > div:nth-child(2),
    .services-grid-split > div:nth-child(3) {
        flex-direction: column;
    }

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

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

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

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