.contact-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1rem;
    gap: 2rem;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.contact-table {
    flex: 0 0 50%;
    box-sizing: border-box;
}
.contact-fields form  {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-table tr {
    display: block;
    width: 100%;
}

.contact-table td {
    padding: 0.5rem;
}

.contact-table tr.mailto-row {
    border-bottom: 2px solid #ccc;
}

.popup-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4caf50;
    color: white;
    padding: 24px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    z-index: 9999;
    font-size: 18px;
}

.popup-success-close {
    margin-top: 18px; /* Space above the button */
    background: #388e3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 16px;
    cursor: pointer;
}

.popup-success-close:hover {
    background: #2e7031;
}

@media (max-width: 709px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-fields,
    .contact-table {
        width: 100%;
    }

    .contact-fields form,
    .contact-table  {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}