/* Contact Form Styling */
#contact {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#contact .section-title {
    text-align: center;
    margin-bottom: 40px;
}

#contact h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    color: #666;
}

#contact form {
    background: #fff;
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#contact form .form-group {
    margin-bottom: 20px;
}

#contact form label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f1f3f5;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

#contact form textarea {
    resize: vertical;
}

#contact form button[type="submit"] {
    background-color: #ffba00;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact form button[type="submit"]:hover {
    background-color: #e09c00;
}

#contact .sent-message {
    display: none;
    color: #28a745;
    font-weight: bold;
}

#contact .error-message {
    display: none;
    color: #dc3545;
    font-weight: bold;
}

.heading {
    padding: 100px, 0;
}