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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
}

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

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2d5016;
}

.hero-section {
    position: relative;
    min-height: 600px;
    background: #2d5016;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(45, 80, 22, 0.65));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.approach-section {
    padding: 120px 0;
    background: #ffffff;
}

.approach-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.approach-image {
    flex: 1;
    background: #e8ede4;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
    margin-top: 10px;
}

.btn-secondary:hover {
    background: #2d5016;
    color: #ffffff;
}

.services-highlight {
    padding: 100px 0;
    background: #2d5016;
}

.services-highlight h2 {
    font-size: 44px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.5;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 12px 24px;
    background: #2d5016;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1f3810;
}

.image-divider {
    height: 500px;
    overflow: hidden;
    background: #e8ede4;
}

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

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

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

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

.process-step {
    flex: 1;
    min-width: 220px;
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: #e8ede4;
    line-height: 1;
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.cta-section {
    padding: 120px 0;
    background: #ffffff;
}

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

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary-large:hover {
    background: #1f3810;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 100px 0;
    background: #e8ede4;
}

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

.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2d5016;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

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

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

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

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.btn-submit:hover {
    background: #1f3810;
}

.disclaimer-section {
    padding: 60px 0;
    background: #ffffff;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie {
    background: #2d5016;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1f3810;
}

.btn-cookie-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    background: #2d5016;
    color: #ffffff;
    padding: 80px 0 60px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.service-badge {
    font-size: 56px;
    margin-bottom: 20px;
}

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

.service-detail h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.service-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

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

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

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

.service-detail-image {
    flex: 1;
    background: #e8ede4;
}

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

.about-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.about-text {
    flex: 1;
}

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

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

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

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d5016;
}

.value-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.expertise-section {
    padding: 100px 0;
    background: #e8ede4;
}

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

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

.expertise-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
}

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

.expertise-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.numbers-section {
    padding: 100px 0;
    background: #2d5016;
}

.numbers-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.number-item {
    text-align: center;
    min-width: 200px;
}

.number-value {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.approach-detail-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.approach-detail-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-detail-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5016;
}

.contact-detail p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.impressum-section {
    padding: 80px 0;
    background: #ffffff;
}

.impressum-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.impressum-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.impressum-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.text-link {
    color: #2d5016;
    word-break: break-all;
}

.thanks-hero {
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2d5016;
    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: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.service-confirmation {
    background: #e8ede4;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #1a1a1a;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.next-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.thanks-info {
    padding: 80px 0;
    background: #ffffff;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content {
    padding: 60px 0;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #666;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .approach-grid,
    .about-grid,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

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

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

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