:root {
    --primary-green: #4A7C59;
    --light-bg: #F9FBF9;
    --text-dark: #333;
}
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: var(--text-dark); 
    margin: 0; 
    background-color: var(--light-bg); 
    -webkit-text-size-adjust: 100%;
}
header { 
    background: white; 
    padding: 2rem 1rem 1.5rem 1rem; 
    text-align: center; 
    border-bottom: 3px solid var(--primary-green); 
}
.container { 
    max-width: 1000px; 
    margin: auto; 
    padding: 1rem; 
}
h1 { 
    color: var(--primary-green); 
    font-size: 2rem; 
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
header p { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; }

.usp-bar { 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 0.5rem;
    background: #eee; 
    padding: 1rem; 
    font-weight: bold; 
    font-size: 0.85rem; 
    text-align: center;
}
.cta-button { 
    background: var(--primary-green); 
    color: white; 
    padding: 1rem 1.5rem; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    display: inline-block; 
    transition: transform 0.2s;
    box-sizing: border-box;
    width: 100%; 
    max-width: 400px;
}

/* Trust-Siegel Container CSS */
.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 0 auto;
    flex-wrap: wrap;
    max-width: 500px;
}
.badge-container img {
    height: 50px; 
    width: auto;
    object-fit: contain;
}

.badge-container-panel {
    margin-top: 2rem;
    background: rgba(255,255,255,0.5);
    padding: 1rem;
    border-radius: 8px;
}

.grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    margin-top: 2rem; 
    align-items: center;
}

.image-container {
    background: #ddd; 
    height: 280px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 10px;
    overflow: hidden;
}
.image-container img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.section-title { text-align: center; color: var(--primary-green); margin-top: 3rem; margin-bottom: 1.5rem; font-size: 1.6rem; }
.benefits-title,
.faq-title {
    color: var(--primary-green);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
.step-card { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.step-number { font-size: 1.8rem; font-weight: bold; color: var(--primary-green); margin-bottom: 0.5rem; }

.benefits-box { background: #eef4f0; padding: 1.5rem; border-radius: 8px; margin-top: 3rem; }
.benefits-list { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.benefits-list ul { padding-left: 1.2rem; }

.seo-guide-section { margin-top: 3rem; background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.seo-guide-section h3 { color: var(--primary-green); margin-top: 1.5rem; }

.faq { 
    background: white; 
    padding: 1.5rem; 
    border-radius: 8px; 
    margin-top: 3rem; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
}
.faq-item { margin-bottom: 1.2rem; border-bottom: 1px solid #eee; padding-bottom: 1.2rem; }
.faq-item h3 { font-size: 1.1rem; line-height: 1.3; }
.faq-item:last-child { border-bottom: none; }

.center-cta { text-align: center; margin-top: 3rem; padding: 0 1rem; }
.center-cta h2 { font-size: 1.5rem; }

/* Tabellen-Styling für bessere Lesbarkeit */
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { padding: 0.75rem; text-align: left; border-bottom: 1px solid #ddd; }
th { background-color: #eef4f0; color: var(--primary-green); }

.internal-link-placeholder { background: #fff; padding: 1rem; border-left: 4px solid var(--primary-green); margin: 1.5rem 0; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
footer a { color: #555; text-decoration: underline; }

.internal-links-section {
    margin-top: 4rem;
    padding: 0 1rem;
}

.internal-links-inner {
    max-width: 500px;
    margin: 0 auto;
}

.internal-links-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-align: left;
}

.internal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
    text-align: left;
}

.internal-links-list li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.related-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.related-link:hover,
.related-link:focus-visible {
    color: var(--primary-green);
    text-decoration: underline;
}

.site-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 1rem;
    font-size: 0.8rem;
    color: #777;
    border-top: 1px solid #eee;
}

.legal-page {
    margin-top: 2rem;
}

.legal-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.legal-card h2 {
    color: var(--primary-green);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-card p {
    margin: 0;
}

/* RESPONSIVE DESIGN (TABLETS & DESKTOP) */
@media (min-width: 768px) {
    header { padding: 3rem 1rem; }
    h1 { font-size: 2.5rem; }
    .badge-container { gap: 1.5rem; margin-top: 2rem; }
    .badge-container img { height: 65px; } 
    .container { padding: 2rem; }
    .usp-bar { grid-template-columns: repeat(4, 1fr); font-size: 0.9rem; }
    .cta-button { width: auto; }
    .grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .image-container { height: 350px; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .benefits-box { padding: 2.5rem; }
    .benefits-list { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .seo-guide-section { padding: 2.5rem; }
    .faq { padding: 2rem; }
    .section-title { font-size: 2rem; margin-top: 4rem; }
    .legal-card { padding: 1.75rem; }
}