.contact-title {
    font-size: 2.7rem;
    color: var(--color-h1);
    margin: 0 auto 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.contact-text {
    flex: 1 1 60%;
    min-width: 260px;
}

.contact-info p {
    margin: 6px 0;
    font-size: 1.2rem;
    color: lightgrey;
}

.contact-info a {
    font-size: 1.2rem;
    color: lightgrey;
}

.contact-info strong {
    color: var(--color-highlight, white);
}

.profile {
    flex: 1 1 30%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-h1);
    box-shadow: 0 8px 16px var(--color-box-shadow);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

.profile img:hover {
    transform: scale(1.05);
}

.description {
    font-size: 1.2rem;
    color: lightgrey;
    text-align: center;
    line-height: 1.6;
    max-width: 260px;
}

.description b {
    color: white;
}

.container-contact-formular {
    width: 70%;
    margin: 0 auto;
    background: var(--color-feature-item);
    padding: 40px;
    box-shadow: 0 8px 16px var(--color-box-shadow);
    border-radius: 8px;
}

.container-contact-formular h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

input,
textarea {
    padding: 12px;
    margin: 10px 0;
    color: white;
    border: 2px solid var(--color-flowchart-user);
    background-color: var(--color-feature-item);
    border-radius: 6px;
}

input::placeholder,
textarea::placeholder {
    color: white;
    opacity: 1;
}

textarea {
    resize: vertical;
}

form button {
    align-self: center;
    width: 30%;
    color: white;
    background-color: var(--color-h1);
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
}

form button:hover {
    background-color: var(--color-scroll-btn-hovered);
}

@media (max-width: 800px) {  
    .container-contact-formular {
        width: 94%;
        padding: 3%;
    }
    form button {
        width: 70%;
    }
    .profile img {
        max-width: 180px;
        max-height: 180px;
        width: 50vw;
        height: 50vw;
    }
    .profile {
        margin-top: 5vh;
        margin-bottom: 3vh;
    }
}