

/* Contact Header */
.contact-header {
    background: url('/static/images/header_contact.png') no-repeat center center/cover;
    padding: 60px 0;
}

.contact-header h1 {
    font-size: 40px;
    font-weight: bold;
}

.contact-header p {
    font-size: 20px;
    /* font-weight: bold; */
}



/* Contact Info */

.contact-info h2 {
    font-size: 28px;
    font-weight: bold;
}

.contact-info p {
    font-size: 16px;
    color: #555;
}

.list-unstyled {
    color: #555;
}

.map-container {
    width: 300px;
    height: 300px;
    margin-left: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px #93dbff;
}



/* Contact Form */

.contact-info-form {
    background-color: #F1FAFF;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form .form-control {
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    max-width: 450px;
}

.contact-form button {
    background-color: #0056b3;
    color: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 250px;
    padding: 10px 20px;
}

.contact-info p {
    font-size: 20px;
    color: #555;
    width: 85%;
}

@media (max-width: 768px) {
    .contact-info.text-center {
        text-align: left !important;
    }

    .contact-form .form-control {
        width: 100%;
    }

    .contact-form button {
        width: 100%;
    }

    .contact-info p {
        width: 100%;
        text-align: left;
    }

    .contact-info h2,
    .contact-info h5 {
        text-align: left;
    }
}

