body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: white;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1em;
    gap: 1em;
}

.contact__card {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0.375em 0.625em rgba(0, 0, 0, 0.1);
    gap: 2em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}


.contact__info h2 {
    font-size: 1.8em;
    color: #2563EB;
    margin-bottom: 1em;
}

.contact__info p {
    font-size: 1em;
    color: #555;
    margin-bottom: 1em;
}

.contact__info ul {
    list-style: none;
    padding: 0;
}

.contact__info li {
    margin-bottom: 0.8em;
    font-size: 1em;
}

.contact__info a {
    color: #2563EB;
    text-decoration: none;
    font-weight: bold;
}

.contact__info a:hover {
    text-decoration: underline;
}

.contact__form {
    padding-left: 1em;
}

.contact__form h2 {
    font-size: 1.5em;
    color: #2563EB;
    margin-bottom: 0.5em;
}

.contact__form label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.9em;
    color: #333;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: #2563EB;
    outline: none;
}

.contact__form textarea {
    resize: none;
    overflow: hidden;
    min-height: 5em;
    max-height: 20em;
}

.contact__form button {
    width: 100%;
    padding: 0.8em;
    background-color: #2563EB;
    color: white;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

.contact__form button:hover {
    background-color: #1D4ED8;
    transform: scale(1.03);
}

@media (max-width: 50em) {
    .contact {
        flex-direction: column;
        align-items: center;
    }

    .contact__info,
    .contact__form {
        max-width: 100%;
    }
}