/* Main container */
.contact-container {
    display: flex;
    max-width: 1100px;
    margin: 50px auto;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left section - Contact Details */
.contact-details {
    background: #033f84;
    color: white;
    padding: 40px;
    flex: 1;
}

.contact-details h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.contact-item i {
    font-size: 24px;
    margin-right: 15px;
    color: white;
}

.contact-item h4 {
    font-size: 17px;
    margin-bottom: 5px;
}
.contact-item p {
    font-size: 15px;
    margin-bottom: 5px;
}


/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons i {
    font-size: 20px;
    background: red;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

/* Right section - Contact Form */
.contact-form {
    flex: 1;
    padding: 40px;
}

.contact-form h2 {
    font-size: 24px;
}
.p{
    font-size: 17px;
}

.contact-form p {
    font-size: 17px;
    color: white;
}

/* Form Styling */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    background: red;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.contact-form button i {
    margin-left: 10px;
}
/* Map Section */
.map-container {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-details,
    .contact-form {
        width: 100%;
    }

    .contact-details {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}