/* Contact section styling */
.contact-section {
    background-color: #fff;
}

/* Contact section header styling */
.contact-section h1 {
    font-size: 2.5em;
    /* margin-top: 20px; */
    color: #333;
    text-align: center;
    border-bottom: 2px solid #7b0505;
    border-top: 2px solid #7b0505;
}

/* Location section styling */
.location {
    width: 90%;
    margin: 10px auto 100px;
}

.location iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contact us section styling */
.contact-us {
    padding: 50px 0;
    width: 80%;
    margin: auto;
}

.contact-us .row {
    display: flex;
    justify-content: space-between;
}

/* Contact column styling */
.contact-col {
    flex: 1;
    margin: 10px;
}

.contact-col a {
    color: #333;
    text-decoration: none;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-col i {
    margin-right: 20px;
    color: #7b0505;
}

.contact-col h5 {
    margin: 0;
    font-size: 24px;
}

.contact-col p {
    margin: 5px 0 0;
    font-size: 18px;
    text-align: left;
}

/* Contact form styling */
.contact-col form {
    display: flex;
    flex-direction: column;
}

.contact-col input, .contact-col textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
}

.contact-col textarea {
    resize: none;
}

/* Send button styling */
.contact-col .send-btn {
    padding: 10px;
    border: none;
    background: #7b0505;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

/* Media query for screens with max-width 1050px */
@media only screen and (max-width: 1050px) {
    .contact-section h1 {
        font-size: 22px;
    }

    .contact-us {
        width: 90%;
    }

    .contact-us .row {
        flex-direction: column;
    }

    .contact-col h5 {
        font-size: 18px;
    }

    .contact-col p {
        font-size: 16px;
    }

    .contact-col input, .contact-col textarea {
        font-size: 16px;
    }
}

/* Media query for screens with max-width 450px */
@media only screen and (max-width: 450px) {
    .contact-col h5 {
        font-size: 14px;
    }

    .contact-col p {
        font-size: 12px;
    }
}
