/* Google Form Embed Styling */
.google-form-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.google-form-container iframe {
    display: block;
    width: 100% !important;
    border: none;
    min-height: 1239px;
}

/* Adjust form wrapper for Google Form */
.contact-form-wrapper {
    max-width: 900px !important;
    padding: 2rem !important;
}

.form-header-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-900);
}

/* Responsive */
@media (max-width: 768px) {
    .google-form-container iframe {
        min-height: 1400px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
    
    .form-header-title {
        font-size: 1.5rem;
    }
}
