/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Container */
.contact-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column */
.left-column {
    flex: 1;
    min-width: 300px; /* Prevent column shrinking too much */
}

.contact-details h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.6;
}

.contact-details a {
    color: #0066cc;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Map */
.map-container {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* Right Column */
.right-column {
    flex: 1;
    max-width: 500px;
    min-width: 300px; /* Maintain usability on small screens */
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

/* Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

.contact-form textarea {
    resize: vertical;
    height: 100px;
}

/* Button */
.contact-form button {
    padding: 12px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #004d99;
    transform: translateY(-2px);
}

.contact-form button:focus {
    outline: 2px solid #004d99;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack columns on smaller screens */
        gap: 30px;
    }

    .left-column,
    .right-column {
        margin: 0 auto;
    }

    .map-container iframe {
        height: 200px;
    }
}
