/* General Section Styles */
.contact-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #a1ce98, #ffffff);

    
}

form:hover {
    box-shadow: 0 8px 16px #27ae60;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    transition: box-shadow 0.25s;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2ecc71;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 4px rgba(46, 204, 113, 0.5);
}

button {
    padding: 0.8rem 2rem;
    color: white;
    background-color: #2ecc71;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #27ae60;
}

@media (max-width: 768px) {
    form {
        padding: 1.5rem;
    }

    button {
        width: 100%;
    }
}