/* Hintergrundfarbe und Textfarbe für die Klasse custom-style */
.custom-style {
    background-color: #033C54; /* Hintergrundfarbe */
    color: #EEC305;           /* Textfarbe */
    padding: 20px;            /* Optional: Abstand innerhalb des Bereichs */
    border-radius: 5px;       /* Optional: Abrundung der Ecken */
}

/* Anpassungen für Links innerhalb der Klasse custom-style */
.custom-style a {
    color: #EEC305;
}

.custom-style a:hover {
    color: #FFD700; /* Optional: helleres Gelb beim Hover */
}