.elementor-211 .elementor-element.elementor-element-fee4709{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for text-editor, class: .elementor-element-9634615 */.custom-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    padding: 40px;
    text-align: center;
    margin: 20px auto;
    box-sizing: border-box;
}

.custom-heading {
    font-size: 28px;
    font-weight: 700;
    color: #003366; /* Dunkles Blau passend zum Header */
    margin-bottom: 20px;
}

.custom-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.custom-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.custom-step-icon {
    background: #003366; /* Dunkles Blau passend zum Header */
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.custom-step-content {
    text-align: left;
    flex: 1;
}

.custom-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #003366; /* Dunkles Blau passend zum Header */
    margin: 0 0 5px;
}

.custom-step-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.custom-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Für bessere mobile Darstellung */
}

.custom-button {
    background-color: #d3d800; /* Limettenfarbe */
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 18px;
    color: #003366; /* Dunkles Blau für die Schriftfarbe */
    cursor: pointer;
    transition: background 0.3s, color 0.3s; /* Transition für die Farbe hinzugefügt */
    text-decoration: none;
    margin: 10px 0; /* Abstände für mobile Ansicht */
    width: calc(50% - 20px); /* Flexible Breite für mobile Ansicht */
}

.custom-button:hover {
    background-color: #bfbf00; /* Etwas dunklere Farbe für den Hover-Effekt */
    color: #009ee3; /* Neue Farbe für den Text beim Hover-Effekt */
}

@media (max-width: 600px) {
    .custom-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .custom-step-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .custom-buttons {
        flex-direction: column;
    }

    .custom-button {
        width: 100%;
    }
}/* End custom CSS */