/* Desktop */
.icon-text-box {
    text-align: center;
}

.icon-text-box i {
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    color: #90a38c; /* Farbe nach Wunsch */
}

.icon-text-box h3 {
    margin: 0;
    font-size: 28px; /* Desktop-Größe */
    line-height: 1.3;
}

/* Smartphone */
@media (max-width: 767px) {
    .icon-text-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }

    .icon-text-box i {
        display: inline-block;
        font-size: 32px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .icon-text-box h4 {
        font-size: 18px !important;
        line-height: 1.3;
        margin: 0;
    }
}

/* Inhalt beginnt nach Nav */

.ce_form input,
.ce_form textarea,
.ce_form select {
    background: #fff !important;
}

/* Textlinks grundsätzlich unterstreichen & bold */
a {
  text-decoration: underline;
  font-weight: bold;
}

.ce_fancylink a {
    text-decoration: none;
}

.right a:hover {
    text-decoration: none !important;
}