.contact-card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.contact-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem 5rem;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.145)
}
.contact-card-icon{
    color: #3a6ef2;
}
.contact-card-content a{
    color: black;
}












.map-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.map-frame{
    display: flex;
    gap: 4rem;
    padding:1rem 3rem;
}
.map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
.form-container {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.form-group {
    flex: 1;
}
label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}
input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea {
    height: 100px;
    resize: vertical;
}
.required::after {
    content: " *";
    color: red;
}
.contact-section-btn {
    width: 100%;
    padding: 10px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.contact-section-btn:hover {
    background-color: #1557b0;
}
@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
    .map-container, .form-container {
        flex: 1;
    }
}