body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.contact-section {
    display: flex;
    height: 100vh;
}

.map-container {
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-container {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.contact-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #ff3b3b;
    width: 20px;
}

.contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    background-color: #fff;
}

/* Custom dropdown styling */
.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 8l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

/* Style optgroup labels */
.contact-form select optgroup {
    font-weight: bold;
    background-color: #f0f0f0;
    color: #333;
}

/* Textarea styling */
.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    padding: 12px;
    background-color: #ffc107;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #e0a800;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        height: auto;
    }
    .map-container {
        height: 300px;
    }
    .contact-container {
        padding: 20px;
    }
}
