/* Container and Centering */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    padding: 20px; /* Add some padding for smaller screens */
}

/* Contact Form Styling */
.contact-us-form {
    background-color: #fff;
    padding: 40px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    margin: auto; /* Center horizontally */
    animation: fadeIn 0.5s ease-in-out; /* Smooth appearance */
}

.contact-us-form h2 {
    margin-top: 0;
    font-size: 24px;
    color: #d32f2f;
    text-align: center; /* Center the heading */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; /* Bold labels */
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #d32f2f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width button */
    margin-top: 20px; /* Space above button */
}

.btn-primary:hover {
    background-color: #a10f0f;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
