.ratgeber-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 120px;
}



.ratgeber-hero {
    text-align: center;
    margin-bottom: 70px;
}

.ratgeber-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color:  var(--brand-dark);
    margin-bottom: 20px;
}

.ratgeber-hero p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.6;
    color:var(--accent);
}


.ratgeber-hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    color:  var(--brand-dark);
    margin: 18px auto 0;
    border-radius: 3px;
}


.ratgeber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;

}




.ratgeber-card {
    display: block;
    padding: 40px 35px;
    background: var(--bacgraund-linear-green);
    border: var(--shadow);
    border-radius: 18px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.ratgeber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.ratgeber-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color:  var(--brand-dark);
}

.ratgeber-card p {
    font-size: 1rem;
    font-weight: 700;
    color:var(--accent);
}


.ratgeber-seo-content {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.ratgeber-seo-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 50px 0 15px;
    color:var(--accent);
}

.ratgeber-seo-content p {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.8;
    color: #2f4f3e;
    margin-bottom: 18px;
}