
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Top Header for Logo at the Center */
.top-header {
    background-color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container-center {
    display: inline-block;
}

.logo {
    max-width: 150px;
}

/* Hero Banner */
.hero-banner {
    background: url('images/birmingham_skyline.png') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.hero-banner .banner-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

.hero-banner h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
}

/* Main Content Sections */
section {
    padding: 2rem;
    background-color: #fff;
    margin: 1rem auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    font-weight: 600;
}

ul {
    list-style-type: square;
    padding-left: 1.5rem;
    color: #555;
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 1rem;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
