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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a8c61;
    --accent-color: #6bb88a;
    --dark-bg: #1a2f23;
    --light-bg: #f4f7f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #d4e2d8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1 1 400px;
    padding-left: 8%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-block {
    flex: 1 1 500px;
    position: relative;
    margin-top: -3rem;
    background-color: var(--light-bg);
}

.hero-image-block img {
    width: 100%;
    height: 500px;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-content-left {
    flex: 1 1 450px;
    padding-right: 5%;
    margin-top: 3rem;
}

.intro-content-left h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-image-right {
    flex: 1 1 400px;
    background-color: var(--accent-color);
    padding: 1.5rem;
    margin-left: -3rem;
}

.intro-image-right img {
    width: 100%;
    height: 400px;
}

.insight-overlap {
    position: relative;
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.insight-background {
    position: absolute;
    top: -2rem;
    left: 10%;
    width: 60%;
    height: 120%;
    background-color: var(--light-bg);
    z-index: -1;
}

.insight-card {
    max-width: 800px;
    margin-left: auto;
    margin-right: 5%;
    padding: 3rem;
    background-color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problem-stacked {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-block {
    width: 70%;
    margin-left: 10%;
    padding: 2rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.problem-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.problem-visual {
    width: 80%;
    margin-left: auto;
    margin-right: 5%;
    background-color: var(--border-color);
}

.problem-visual img {
    width: 100%;
    height: 400px;
}

.solution-reveal {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.solution-reveal h2 {
    font-size: 3rem;
    color: var(--dark-bg);
    text-align: center;
    margin-bottom: 1rem;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 350px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 3rem;
}

.card-offset-3 {
    margin-top: 1.5rem;
}

.card-offset-4 {
    margin-top: 4rem;
}

.card-offset-5 {
    margin-top: 2rem;
}

.service-card img {
    width: 100%;
    height: 250px;
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.form-section-offset {
    max-width: 800px;
    margin: 6rem auto 6rem 8%;
    padding: 3rem;
    background-color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.form-container p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.trust-overlap {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.trust-overlap h3 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.testimonial-offset-1 {
    width: 70%;
    margin-left: 5%;
}

.testimonial-offset-2 {
    width: 75%;
    margin-left: auto;
    margin-right: 10%;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-stacked {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.benefits-stacked h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.benefit-item:nth-child(1) {
    width: 80%;
    margin-left: 5%;
}

.benefit-item:nth-child(2) {
    width: 85%;
    margin-left: auto;
    margin-right: 5%;
}

.benefit-item:nth-child(3) {
    width: 75%;
    margin-left: 10%;
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.science-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 3rem;
    background-color: var(--light-bg);
}

.science-section h3 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.science-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.science-section a {
    color: var(--secondary-color);
    font-weight: 600;
}

.references {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.references h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.references ol {
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-final {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-final .cta-secondary {
    color: var(--white);
    border-color: var(--white);
}

.cta-final .cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-block {
    flex: 1 1 250px;
}

.footer-block-1 {
    flex: 1 1 350px;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--accent-color);
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
}

.about-hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-text-primary {
    flex: 1 1 450px;
    padding-right: 5%;
    margin-top: 2rem;
}

.about-text-primary h1 {
    font-size: 3rem;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text-primary p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-image-primary {
    flex: 1 1 400px;
    background-color: var(--light-bg);
    padding: 1rem;
}

.about-image-primary img {
    width: 100%;
    height: 450px;
}

.mission-asymmetric {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.mission-content {
    flex: 1 1 500px;
    padding-left: 10%;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-visual {
    flex: 1 1 350px;
    margin-top: 4rem;
    background-color: var(--accent-color);
    padding: 1rem;
}

.mission-visual img {
    width: 100%;
    height: 400px;
}

.values-stacked {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.values-stacked h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card-1 {
    width: 75%;
    margin-left: 5%;
}

.value-card-2 {
    width: 80%;
    margin-left: auto;
    margin-right: 5%;
}

.value-card-3 {
    width: 70%;
    margin-left: 15%;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-overlap {
    max-width: 900px;
    margin: 6rem auto 6rem 10%;
    padding: 3rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.approach-overlap h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-asymmetric {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    background-color: var(--light-bg);
}

.team-member-1 {
    width: 70%;
    margin-left: 10%;
}

.team-member-2 {
    width: 75%;
    margin-left: auto;
    margin-right: 8%;
}

.team-member-3 {
    width: 80%;
    margin-left: 5%;
}

.team-member h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.history-section {
    max-width: 800px;
    margin: 6rem auto 6rem 15%;
    padding: 3rem;
    background-color: var(--light-bg);
}

.history-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.history-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-detail {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-offset-1 .service-detail-content {
    flex: 1 1 500px;
    padding-left: 5%;
}

.service-detail-offset-1 .service-detail-image {
    flex: 1 1 400px;
    margin-top: -2rem;
}

.service-detail-offset-2 .service-detail-image {
    flex: 1 1 400px;
    margin-top: 3rem;
}

.service-detail-offset-2 .service-detail-content {
    flex: 1 1 500px;
    padding-right: 5%;
}

.service-detail-offset-3 .service-detail-content {
    flex: 1 1 500px;
    padding-left: 8%;
}

.service-detail-offset-3 .service-detail-image {
    flex: 1 1 400px;
}

.service-detail-offset-4 .service-detail-image {
    flex: 1 1 400px;
    margin-top: -3rem;
}

.service-detail-offset-4 .service-detail-content {
    flex: 1 1 500px;
}

.service-detail-offset-5 .service-detail-content {
    flex: 1 1 500px;
    padding-left: 10%;
}

.service-detail-offset-5 .service-detail-image {
    flex: 1 1 400px;
    margin-top: 2rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1rem 0 2rem 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-image {
    background-color: var(--light-bg);
}

.service-detail-image img {
    width: 100%;
    height: 450px;
}

.process-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1 1 200px;
    max-width: 220px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-cta {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--light-bg);
}

.service-cta h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.impressum-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--light-bg);
}

.impressum-hero h1 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.impressum-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.impressum-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.impressum-section {
    margin-bottom: 3rem;
}

.impressum-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.impressum-section h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.impressum-section p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.email-display {
    font-weight: 600;
    color: var(--primary-color);
    cursor: text;
}

.contact-info-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: var(--light-bg);
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-info {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    text-align: left;
}

.thanks-info h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.thanks-additional h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-additional ul {
    margin-left: 1.5rem;
}

.thanks-additional li {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--light-bg);
}

.legal-hero h1 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.legal-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-offset,
    .intro-asymmetric,
    .mission-asymmetric,
    .service-detail {
        flex-direction: column;
    }

    .hero-image-block,
    .intro-image-right {
        margin-left: 0;
        margin-top: 2rem;
    }

    .hero-text-block,
    .intro-content-left,
    .mission-content,
    .service-detail-content {
        padding-left: 0;
        padding-right: 0;
    }

    .problem-block,
    .problem-visual,
    .benefit-item,
    .value-card,
    .team-member,
    .testimonial-offset-1,
    .testimonial-offset-2 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .form-section-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .approach-overlap,
    .history-section {
        margin-left: auto;
        margin-right: auto;
    }
}