/* Contact Section */
#contact {
    background: linear-gradient(135deg, #F5F6F5 0%, #FDFDFB 100%);
    text-align: center;
}

#contact h2 {
    font-size: 2.8em;
    color: #006666;
    margin-bottom: 25px;
    font-weight: 700;
}

#contact form {
    max-width: 600px;
    margin: 20px auto;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #006666;
    border-radius: 6px;
    background: #FDFDFB;
    color: #4A4E69;
}

#contact button {
    background: #006666;
    color: #FDFDFB;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact button:hover {
    background: #008080;
}