.full-image-block {
    position: relative;
    margin: 0 auto; /* Zentriert den Block */
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    border-radius: 30px; /* Abrundung auf allen Seiten */
    color: #fff;
    text-align: center;
    overflow: hidden; /* Verhindert, dass der Inhalt über den Block hinausgeht */
}

.full-image-block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dunkles Overlay */
    border-radius: 30px; /* Entspricht der Abrundung des Containers */
}

.full-image-block .content {
    position: relative;
    z-index: 1;
    margin: auto;
}

.full-image-block h2 {
    font-size: 2em;
    font-weight: bold;
}

.full-image-block p {
    margin-top: 10px;
    font-size: 1.2em;
	margin: 0 auto !important;
}

.full-image-block .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ecc791;
    color: #050608 !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease; /* Sanfter Hover-Effekt */
    border: 2px solid #ecc791;
}

.full-image-block .btn:hover {
    background-color: #050608; /* Farbe bei Hover */
    color: #ecc791 !important; /* Textfarbe bei Hover */
}
