/* Stile für die Kontakt-Seite */
.contact {
    padding: 50px 20px;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-page .contact-container {
    display: none;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #6c4f70;
    text-align: center;
}

.contact p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #757081;
}

.contact-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.contact-icons a {
    display: inline-block;
}

.contact-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.contact-icons img:hover {
    transform: scale(1.1);
}
