body {
    background-color: #f9f9f9;
}


.contact-container {
    text-align: center;
    padding: 50px 10%;
    background: #f9f9f9;
    margin: 100px 0px;
}

.contact-container h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 20px;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form & Map */
.contact-form,
.map-container {
    width: 50%;
    max-width: 600px; /* Ensures both elements are the same size */
    background: white;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

/* Contact Form */
.contact-form h2,
.map-container h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-size: 1.5rem;
    margin: 10px 0 5px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 1.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}


.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.8rem;
    background: var(--light-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #b68e60;
}

/* Google Map Container */
.map-container iframe {
    width: 100%;
    height: 350px; /* Keeps the height proportional */
    border-radius: 10px;
    
    display: block; /* Prevents extra space below the iframe */
}

.map-container p {

    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 5%;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .map-container {
        width: 100%;
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1.4rem;
    }

    .map-container iframe {
        height: 300px; /* Adjust height for smaller screens */
    }
}