.hero h1 {
    font-size: 2.4em; /* vorher 3em */
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }
}

.target-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.target-box h2 {
    text-align: left;
    color: #272F7A;
    margin-bottom: 15px;
}

.target-box p {
    text-align: left;
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.target-box .benefits-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
}

.target-box .benefits-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #004080;
    font-weight: bold;
}

.cta-box {
    background-color: #004080;
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 10px;
    font-size: 2em;
}

.cta-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.cta-box .btn-secondary {
    background-color: #fff;
    color: #004080;
    border: 2px solid #fff;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.cta-box .btn-secondary:hover {
    background-color: #ffcc00;
    color: #000;
    border-color: #ffcc00;
}

.cta-box .btn {
    margin: 0 10px 10px;
}