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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a4d2e;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #1a4d2e;
}

.hero-section {
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-text {
    flex: 1;
    color: #ffffff;
}

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

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

.hero-image {
    flex: 1;
    background-color: #0d3a1f;
}

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a4d2e;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a4d2e;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #1a4d2e;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #1a4d2e;
    color: #ffffff;
}

.intro-section {
    padding: 100px 20px;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a4d2e;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.values-section {
    padding: 90px 20px;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.services-preview {
    padding: 100px 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

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

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a4d2e;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d2e;
    margin-top: 15px;
}

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

.form-section {
    padding: 90px 20px;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a4d2e;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    background-color: #1a4d2e;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0d3a1f;
}

.trust-section {
    padding: 90px 20px;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a4d2e;
}

.stats-row {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.disclaimer-section {
    padding: 60px 20px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e5e7eb;
    padding: 60px 20px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4ade80;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #1a4d2e;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #0d3a1f;
}

.cookie-btn.reject {
    background-color: #4b5563;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

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

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

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

.service-detail-card {
    margin-bottom: 70px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

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

.service-detail-header h2 {
    font-size: 32px;
    color: #1a4d2e;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #1a4d2e;
    padding: 12px 24px;
    background-color: #e8f1ec;
    border-radius: 5px;
}

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

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

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

.service-detail-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #1a4d2e;
}

.service-detail-text ul {
    padding-left: 25px;
    color: #4a5568;
    line-height: 1.8;
}

.service-detail-text ul li {
    margin-bottom: 10px;
}

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

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

.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a4d2e;
}

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

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

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

.about-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.mission-section {
    padding: 90px 20px;
}

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

.mission-text {
    flex: 1;
}

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

.mission-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
    background-color: #e8f1ec;
}

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

.values-detailed {
    padding: 80px 20px;
}

.values-detailed h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a4d2e;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a4d2e;
}

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

.expertise-section {
    padding: 90px 20px;
}

.expertise-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a4d2e;
}

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

.expertise-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

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

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a4d2e;
}

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

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

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

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a4d2e;
}

.step-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 90px 20px;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.team-image-container {
    margin-top: 50px;
    background-color: #e8f1ec;
}

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

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

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

.contact-info-box,
.impressum-box {
    flex: 1;
    min-width: 300px;
}

.contact-info-box h2,
.impressum-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a4d2e;
}

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

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

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

.impressum-box h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a4d2e;
}

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

.impressum-box span {
    color: #1a4d2e;
}

.map-placeholder {
    padding: 60px 20px;
}

.map-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.map-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a4d2e;
}

.thanks-content > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a4d2e;
    text-align: center;
}

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

.step {
    padding: 25px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a4d2e;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a4d2e;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a4d2e;
}

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

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

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

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

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

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