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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #2C5F2D;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 35px;
}

.header-right a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2C5F2D;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2C5F2D;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234a23;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #2C5F2D;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2C5F2D;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #2C5F2D;
    color: #ffffff;
}

.features-asymmetric {
    padding: 100px 40px;
    background-color: #ffffff;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
}

.feature-offset-left {
    margin-left: 0;
    margin-right: auto;
}

.feature-offset-right {
    margin-left: auto;
    margin-right: 0;
}

.feature-block img {
    width: 480px;
    height: 360px;
    object-fit: cover;
    border-radius: 2px;
    background-color: #f5f5f5;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-text h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 600;
}

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

.services-preview {
    padding: 90px 40px;
    background-color: #f9f9f9;
}

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

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

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-grid-split {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 25px 25px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    color: #2C5F2D;
    font-weight: 700;
    margin: 0 25px 20px;
}

.service-link {
    display: inline-block;
    margin: 0 25px 25px;
    color: #2C5F2D;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #234a23;
}

.cta-split-section {
    display: flex;
    background-color: #2C5F2D;
}

.cta-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content-left h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-left p {
    font-size: 17px;
    color: #e8e8e8;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-image-right {
    flex: 1;
    background-color: #234a23;
    overflow: hidden;
}

.cta-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.form-wrapper-split {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    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: #2C5F2D;
}

.btn-submit {
    padding: 16px 38px;
    background-color: #2C5F2D;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.footer-main {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

.footer-content-split {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

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

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

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #252525;
    border-radius: 4px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2C5F2D;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    font-size: 14px;
    color: #444;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2C5F2D;
    color: #ffffff;
}

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

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

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

.page-hero-split {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 60px;
    max-width: 700px;
}

.page-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 19px;
    color: #e8e8e8;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
    background-color: #f5f5f5;
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #444;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    color: #2C5F2D;
    font-weight: 700;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2C5F2D;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #234a23;
}

.about-story-split {
    display: flex;
    gap: 70px;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    background-color: #f5f5f5;
}

.values-section {
    padding: 90px 60px;
    background-color: #f9f9f9;
}

.values-heading {
    text-align: center;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
}

.value-block h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.team-split-section {
    display: flex;
    background-color: #ffffff;
}

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

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

.team-content-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content-side h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-content-side p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    color: #2C5F2D;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #234a23;
}

.process-section {
    padding: 90px 60px;
    background-color: #f9f9f9;
}

.process-heading {
    text-align: center;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2C5F2D;
    opacity: 0.2;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.cta-about-section {
    padding: 80px 60px;
    background-color: #2C5F2D;
}

.cta-about-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-about-wrapper h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-about-wrapper p {
    font-size: 18px;
    color: #e8e8e8;
    margin-bottom: 35px;
}

.cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #2C5F2D;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.impressum-section,
.legal-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.impressum-wrapper,
.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-wrapper h1,
.legal-wrapper h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.impressum-content-split {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.impressum-block {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.impressum-block h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.impressum-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    color: #2d2d2d;
    margin: 25px 0 12px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 17px;
    color: #2d2d2d;
    margin: 18px 0 10px;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

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

.legal-content a {
    color: #2C5F2D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #234a23;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #fafafa;
    min-height: 500px;
}

.thanks-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-wrapper h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #f0f8f0;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 35px;
}

.thanks-service-info p {
    font-size: 15px;
    color: #444;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    font-size: 15px;
    color: #555;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.thanks-next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .feature-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-block img {
        width: 100%;
    }

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

    .cta-split-section {
        flex-direction: column;
    }

    .form-wrapper-split {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .about-story-split {
        flex-direction: column;
        padding: 50px 30px;
    }

    .team-split-section {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }
}