* {
    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: #2a2a2a;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

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

.btn-accept {
    background-color: #4a7c2c;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6724;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a7c2c;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2d5016;
}

.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(to bottom, rgba(45, 80, 22, 0.6), rgba(45, 80, 22, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #4a7c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6724;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9f7;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

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

.content-right {
    flex: 1;
    background-color: #e8ede4;
}

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

.solution-section {
    padding: 80px 0;
    background-color: #2d5016;
    color: #ffffff;
}

.solution-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    color: #2a2a2a;
}

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

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

.feature-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2d5016;
}

.feature-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.5;
}

.services-preview-section {
    padding: 80px 0;
    background-color: #f8f9f7;
}

.services-preview-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-left: 4px solid #4a7c2c;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2d5016;
}

.service-info p {
    font-size: 16px;
    color: #555;
}

.service-price {
    flex-shrink: 0;
}

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

.cta-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #2d5016;
    text-decoration: none;
    border: 2px solid #2d5016;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d5016;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    font-size: 16px;
    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: #4a7c2c;
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #4a7c2c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6724;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.8;
}

.main-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a7c2c;
}

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

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

.page-header {
    padding: 60px 0;
    background-color: #2d5016;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
}

.services-detail-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5016;
}

.service-detail-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c2c;
    font-weight: 700;
}

.service-pricing {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9f7;
    border-radius: 5px;
}

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

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

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

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

.services-cta-section {
    padding: 60px 0;
    background-color: #f8f9f7;
}

.cta-box {
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2d5016;
}

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

.about-intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-content-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2d5016;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

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

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

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #4a7c2c;
}

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

.value-card p {
    font-size: 16px;
    color: #555;
}

.expertise-section {
    padding: 80px 0;
    background-color: #2d5016;
    color: #ffffff;
}

.expertise-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.expertise-section p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

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

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

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

.process-step {
    display: flex;
    gap: 40px;
    align-items: center;
}

.step-visual {
    flex: 1;
    position: relative;
    background-color: #e8ede4;
    border-radius: 8px;
    overflow: hidden;
}

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

.step-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #4a7c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-description {
    flex: 1;
}

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

.step-description p {
    font-size: 17px;
    color: #3a3a3a;
}

.commitment-section {
    padding: 80px 0;
    background-color: #f8f9f7;
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
    text-align: center;
}

.commitment-section p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #3a3a3a;
    text-align: center;
}

.about-cta-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d5016;
}

.info-item {
    margin-bottom: 30px;
}

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

.info-item p {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.8;
}

.email-display {
    color: #666;
    font-weight: 500;
}

.impressum-block {
    flex: 1;
}

.impressum-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d5016;
}

.impressum-block h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2d5016;
}

.impressum-block h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #2d5016;
}

.impressum-block p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #3a3a3a;
    line-height: 1.8;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #2d5016;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d5016;
}

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #3a3a3a;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #3a3a3a;
}

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

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

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

.cookie-table th {
    font-weight: 600;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9f7;
}

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

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5016;
}

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

.service-info-box {
    background-color: #f8f9f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5016;
}

.service-info-box p {
    font-size: 16px;
    color: #3a3a3a;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d5016;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4a7c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d5016;
}

.step-text p {
    font-size: 16px;
    color: #555;
}

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

.btn-primary {
    padding: 12px 30px;
    background-color: #4a7c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6724;
}

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: #2d5016;
    text-decoration: none;
    border: 2px solid #2d5016;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .split-content,
    .about-content-split,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

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

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

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