.contact-container{
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-container h2{
    font-family: "Permanent Marker", cursive;
    text-align: center;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.contact-form label{
    font-weight: bold;
    margin-top: 5px;
    /* margin-bottom: 15px; */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    resize: vertical;
}

.contact-form textarea{
    min-height: 120px;
}

.submit-btn{
    background-color: black;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor:pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #444443;
}

.form-result {
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    color: black;
}

@media screen and (max-width: 650px) {

    .contact-container {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .contact-container h2 {
        font-size: 1.8rem; 
        margin-bottom: 10px;
    }

    .contact-form {
        gap: 10px;
        margin-top: 5px;
    }

    .contact-form label {
        margin-top: 3px;
        font-size: 0.9rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        padding: 8px;
        font-size: 14px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }

    .form-result {
        font-size: 1rem;
    }

    .g-recaptcha {
        transform: scale(0.8);  /* scale down to 80% */
        transform-origin: top left;  /* keep it aligned properly */
        /* Optional: reduce the container's height so it doesn't leave too much space */
        height: 78px; /* approximate height after scaling */
    }
}