/* Contact Section */
.contact-section {
    background: #f5f5f5;
    padding: 70px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 40px;
}

.contact-section h2 {
    color: #004aad;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-section p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #004aad;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form textarea {
    resize: none;
}

/* Send Button */
.btn-send {
    background: #004aad;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn-send:hover {
    background: #002f6c;
}

/* Contact Details */
.contact-details {
    flex: 1;
    min-width: 300px;
    background: #004aad;
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-details h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Center "Contact Information" */
.contact-details h3 {
    text-align: center;
}

/* Make Contact Info (Address, Phone, Email) White */
.info-item p,
.info-item a {
    color: rgb(204, 204, 204) !important;
}



/* Center Align Contact Details */
.contact-info {
    text-align: center;
}

.contact-item i {
    font-size: 20px;
    background: white;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
}

/* Google Map */
.map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        min-width: 100%;
    }
}