/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Google Form Container */
.form-container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 15px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-section p {
        font-size: 1.1rem;
    }

    .form-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-section p {
        font-size: 1rem;
    }

    .form-container iframe {
        height: 500px;
    }
}
