/* Contact Form Styling */
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
}

.contact-form h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

#button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

#button[type="submit"]:hover {
    background-color: #0056b3;
}

#button[type="submit"]:active {
    background-color: #003f7f;
}

@media (max-width: 768px) {
    .contact-form {
        max-width: 100%;
        padding: 20px;
    }
    .contact-form h2 {
        font-size: 24px;
    }
    .form-group input, .form-group textarea {
        font-size: 14px;
    }
    #button[type="submit"] {
        font-size: 16px;
    }
}
