/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

h1, h2 {
    color: #333;
    text-align: center; /* Center align headings */
}

main {
    padding: 20px;
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 2em;
}

ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

address {
    font-style: normal; /* Remove italic for address */
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #333;
    color: #fff;
}

/* Optional: Add basic image styling if you include a gallery section */
/*
#gallery img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1em;
    border-radius: 4px;
}
*/
