
/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form input, 
.contact-form textarea {
    width: 100%; /* Full width */
    padding: 12px;
    margin-bottom: 15px; /* Spacing between fields */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    display: block; /* Ensure block level */
}

.contact-form button {
    width: 100%; /* Full width button */
    padding: 12px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #3498db;
}

/* Ensure container centers the form */
.contact-info {
    text-align: center;
}
