/* General Contact Page Styling */
.contact-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

h1, h2 {
    color: #1e88e5; /* A shade of blue for the contact page */
    text-align: center;
}

p {
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

a {
    color: #1976d2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

section:last-child {
    border-bottom: none;
}
