/* Contact Info Section */
.contact-info {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto; /* Center the form horizontally */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text within the form to the left */
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form button {
    background-color: #d9534f; /* Calmer red */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: block; /* Make the button a block element to center */
    margin: 0 auto; /* Center the button horizontally */
}

.contact-form button:hover {
    background-color: #c9302c; /* Darker red */
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 10px 20px;
    text-align: center;
    border-top: 2px solid #d9534f; /* Calmer red */
}

footer p {
    margin: 5px 0;
}

footer a {
    text-decoration: none;
    color: #d9534f; /* Calmer red */
}

footer a:hover {
    text-decoration: underline;
}
