.contact-section {
    position: relative;
    background: url('images/WhatsApp\ Bild\ 2025-01-25\ um\ 13.53.32_ae64f73a.jpg') center/cover no-repeat;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 69, 204, 0.164); 
    backdrop-filter: blur(10px);
}

.content {
    position: relative;
    color: white;
    padding: 30px;
    z-index: 1;
}

h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    color: white;
    background: #007bff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}