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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8c73;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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(--bg-white);
}

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

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background-color: #ffeaa7;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.88) 0%, rgba(74, 140, 115, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 40px;
}

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e89450;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.intro-card {
    max-width: 850px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 90px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.select-service-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

.trust-content img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.form-section {
    padding: 90px 0;
    background-color: white;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-wrapper > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-selected-display {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: none;
}

.service-selected-display.active {
    display: block;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #e89450;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff3cd;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.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;
    line-height: 1.6;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background-color: #e89450;
}

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

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

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

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

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

.service-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.philosophy-card {
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
}

.approach-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-wrapper img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-commitment {
    padding: 80px 0;
}

.commitment-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 50px;
    border-radius: 10px;
}

.commitment-box h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.commitment-box p {
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

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

.contact-info-box,
.impressum-box {
    flex: 1;
}

.contact-info-box h2,
.impressum-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.note {
    font-size: 13px;
    font-style: italic;
    margin-top: 8px;
}

.impressum-box h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.impressum-box h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.impressum-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.link-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.reach-out-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.reach-out-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reach-out-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reach-out-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content {
    padding: 80px 0;
}

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

.legal-wrapper h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-wrapper h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.legal-wrapper h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-wrapper h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-wrapper p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-wrapper ul {
    margin: 16px 0 16px 30px;
    line-height: 1.8;
}

.legal-wrapper li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 30px;
}

.thanks-wrapper h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    margin-bottom: 50px;
}

.service-confirmed {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    font-size: 17px;
    color: var(--primary-color);
}

.thanks-details {
    text-align: left;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 24px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.additional-info {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.info-cards {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

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

    .service-card {
        width: 100%;
    }

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

    .trust-content img {
        width: 100%;
    }

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

    .about-content-split,
    .approach-wrapper {
        flex-direction: column;
    }

    .approach-wrapper img {
        width: 100%;
    }

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

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

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

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-wrapper,
    .intro-card {
        padding: 30px;
    }
}