.contact-section h1{
    font-size: 4rem !important;
}
.contact-section h2{
    font-size: 2rem !important;
}
.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    color: black;
    margin: 4rem 20rem;
}

.contact-info {
    width: 50%;
}

.title {
    font-size: 36px;
    color: #003366;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin: 5px 0;
}

.contact-info .address {
    margin-top: 20px;
}

.contact-info .address h2 {
    font-size: 24px;
    color: #003366;
}

.contact-form {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    /* background-color: #d8a45b; */
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    background-color: #fff;
    color: #ff0000;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #003366;
    transition: .5s ease-in;
}

.contact-form button:hover {
    background-color: #064c92;
    transform: scale(1.05);
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container iframe {
    width: 90%;
    height: 100%;
    border: 0;
}

/* Media Query for Tablets */
@media (max-width: 992px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        margin: 2rem 5rem;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .title {
        font-size: 28px;
        text-align: center;
    }

    .contact-info p {
        font-size: 16px;
        text-align: center;
    }

    .contact-info .address h2 {
        font-size: 20px;
        text-align: center;
    }

    .contact-form button {
        width: 100%;
        margin-top: 10px;
    }

    .map-container iframe {
        width: 100%;
    }
}

/* Media Query for Phone Screens */
@media (max-width: 600px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        margin: 1rem 1rem;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .title {
        font-size: 24px;
        text-align: center;
    }

    .contact-info p {
        font-size: 14px;
        text-align: center;
    }

    .contact-info .address h2 {
        font-size: 18px;
        text-align: center;
    }

    .contact-form button {
        width: 100%;
        margin-top: 10px;
    }

    .map-container iframe {
        width: 100%;
    }
}
