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

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

.ad-disclosure {
    background-color: #2d5016;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navigation {
    display: flex;
    gap: 32px;
}

.navigation a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #2d5016;
}

.hero-magazine {
    background-color: #ffffff;
    padding: 60px 40px;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #2d5016;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-column p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.hero-image-column {
    flex: 1;
    background-color: #e8f0e3;
}

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

.btn-primary {
    background-color: #2d5016;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d5016;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    border: 2px solid #2d5016;
    transition: all 0.3s;
    cursor: pointer;
}

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

.intro-section {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.intro-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.intro-sidebar {
    width: 320px;
    flex-shrink: 0;
    background-color: #e8f0e3;
}

.intro-sidebar img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.intro-main-content {
    flex: 1;
}

.intro-main-content h3 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-main-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight-box {
    background-color: #e8f0e3;
    padding: 24px;
    margin-top: 32px;
    border-left: 4px solid #2d5016;
}

.highlight-box p {
    font-size: 18px;
    color: #2d5016;
    font-weight: 600;
    margin-bottom: 0;
}

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h3 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 16px;
}

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

.services-grid-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-compact {
    background-color: #fafafa;
    width: calc(33.333% - 20px);
    overflow: hidden;
}

.service-card-compact img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 24px;
}

.service-card-body h4 {
    font-size: 20px;
    color: #2d5016;
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.cta-inline-centered {
    text-align: center;
    margin-top: 50px;
}

.process-section {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.process-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.process-text-block {
    flex: 1.2;
}

.process-text-block h3 {
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 32px;
}

.process-list {
    list-style-position: inside;
    font-size: 17px;
    color: #555;
    line-height: 2;
}

.process-list li {
    margin-bottom: 16px;
}

.process-image-block {
    flex: 1;
    background-color: #e8f0e3;
}

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

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

.testimonials-section h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonials-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-left: 3px solid #7fa865;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item footer {
    font-size: 15px;
    font-weight: 600;
    color: #b8d4a7;
}

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

.form-container-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h3 {
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 20px;
}

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

.form-wrapper {
    flex: 1.2;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
}

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

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

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

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

.footer-main {
    background-color: #1f3810;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

.footer-column ul li a {
    color: #b8d4a7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #7fa865;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    padding: 24px 40px;
    display: none;
}

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

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

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

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

.btn-cookie-accept {
    background-color: #2d5016;
    color: #ffffff;
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #2d5016;
    padding: 10px 24px;
    font-size: 14px;
    border: 2px solid #2d5016;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.link-cookie-policy {
    color: #2d5016;
    font-size: 13px;
    text-decoration: underline;
}

.page-hero {
    background-color: #2d5016;
    padding: 60px 40px;
    text-align: center;
}

.page-hero-content h2 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 18px;
    color: #b8d4a7;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.story-main {
    flex: 1;
}

.story-main h3 {
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

.story-sidebar {
    width: 360px;
    flex-shrink: 0;
    background-color: #e8f0e3;
}

.story-sidebar img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    width: calc(50% - 20px);
    background-color: #ffffff;
    padding: 36px;
}

.value-item h4 {
    font-size: 22px;
    color: #2d5016;
    margin-bottom: 16px;
}

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

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-intro h3 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 16px;
}

.team-intro p {
    font-size: 17px;
    color: #666;
}

.team-image-block {
    max-width: 1400px;
    margin: 0 auto 40px;
    background-color: #e8f0e3;
}

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

.team-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

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

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-block {
    width: calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 32px;
}

.approach-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #b8d4a7;
}

.approach-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #e8f0e3;
}

.cta-about {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

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

.cta-about-content h3 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

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

.service-pricing {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

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

.price-desc {
    font-size: 14px;
    color: #888;
}

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

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

.services-cta {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.services-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 28px;
}

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

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-main-info h3 {
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 32px;
}

.contact-detail-block {
    margin-bottom: 32px;
}

.contact-detail-block h4 {
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.email-static {
    color: #555;
    font-weight: 500;
}

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

.contact-secondary-info h3 {
    font-size: 28px;
    color: #2d5016;
    margin-bottom: 20px;
}

.contact-secondary-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-cta-box {
    margin-top: 32px;
}

.contact-faq {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.contact-faq h3 {
    text-align: center;
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    width: calc(50% - 15px);
    background-color: #ffffff;
    padding: 28px;
}

.faq-item h4 {
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 12px;
}

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

.contact-impressum {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-impressum h3 {
    text-align: center;
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 30px;
}

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

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

.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h2 {
    font-size: 40px;
    color: #2d5016;
    margin-bottom: 16px;
}

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

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

.thanks-next-steps {
    background-color: #f5f5f5;
    padding: 32px;
    margin: 40px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    color: #2d5016;
    margin-bottom: 20px;
}

.thanks-next-steps ol {
    list-style-position: inside;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.thanks-next-steps li {
    margin-bottom: 12px;
}

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

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f5f5f5;
}

.legal-container h3 {
    font-size: 24px;
    color: #2d5016;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h4 {
    font-size: 18px;
    color: #2d5016;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-container ul,
.legal-container ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.legal-container a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-top: 40px;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 14px;
}

.cookies-table th {
    background-color: #2d5016;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-content-wrapper,
    .intro-layout,
    .process-asymmetric,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .intro-sidebar,
    .story-sidebar {
        width: 100%;
    }

    .service-card-compact {
        width: calc(50% - 15px);
    }

    .testimonials-columns {
        flex-direction: column;
    }

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

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

    .navigation {
        gap: 20px;
    }

    .hero-text-column h2 {
        font-size: 36px;
    }

    .service-card-compact {
        width: 100%;
    }

    .value-item {
        width: 100%;
    }

    .approach-block {
        width: 100%;
    }

    .faq-item {
        width: 100%;
    }

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

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