.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px;
    background-color: navy;
    color: rgb(0, 0, 0);
    font-family: Arial, sans-serif;
}

.contact-card {
    flex-basis: calc(50% - 20px);
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 32px;
}

.contact-card label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-card input[type=text],
.contact-card input[type=tel],
.contact-card input[type=email],
.contact-card select,
.contact-card textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-card input[type=text]:hover,
.contact-card input[type=tel]:hover,
.contact-card input[type=email]:hover,
.contact-card select:hover,
.contact-card textarea:hover {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 0, 0, 0.613);
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}


.contact-card input[type=submit] {
    background-color: navy;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.contact-card input[type=submit]:hover {
    background-color: #333;
}

.contact-info {
    flex-basis: calc(50% - 20px);
    background-color:#ffffff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info iframe {
    margin-bottom: 20px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .contact-card,
    .contact-info {
        flex-basis: 100%;
    }
}