/* Overall layout for the contact page */
.cont-section {
    padding: 20px;
}

.container {
    display: flex;
    justify-content: space-between;  /* Position contact-info and contact-form on the left and right */
    gap: 20px; /* Adding some space between the two sections */
}

/* Contact Information Styles */
.contact-info {
    width: 40%; /* Adjust width as necessary */
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #333;
    margin-left: 100px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
    justify-content: center;
    margin-left: 100px;
    
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

/* Contact Form Styles */
.contact-form {
    width: 55%; /* Adjust width as necessary */
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    height: auto;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack contact info and form on top of each other */
        align-items: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;  /* Make both sections full width on smaller screens */
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info, .contact-form {
        width: 100%;
        padding: 10px;
    }

    .contact-form form {
        width: 100%;
    }

    .contact-form select, 
    .contact-form input, 
    .contact-form textarea {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .contact-info p {
        font-size: 14px;
    }

    .contact-form h2 {
        font-size: 18px;
    }

    .contact-form button {
        width: 100%;
    }
}
