/* css/contact.css */

/* Responsive embed container for the contact form */
.embed-container {
    position: relative;
    padding-bottom: 75%; /* Aspect ratio: 480/640 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Ultra modern, mobile-first adjustments */
.container {
    padding: 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 40px;
    }
}
