.contact-container {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    width: 100%;
    max-width: 800px; /* Limit the maximum width for larger screens */
    margin: 0 auto; /* Center the entire container */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-us h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-us p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-us label {
    text-align: left;
    font-size: 14px;
    color: #333;
}

.contact-us input[type="text"],
.contact-us input[type="email"],
.contact-us textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-us textarea {
    resize: vertical;
    /* Allow vertical resize */
}

.contact-us button[type="submit"] {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

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

/* Success and error messages */
.contact-us .message {
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-us .message.success {
    color: green;
}

.contact-us .message.error {
    color: red;
}