body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

.site-header {
    background-color: #0b2545;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.site-logo img {
    height: 150px;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.navigation a:hover {
    text-decoration: underline;
}

main {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    background-color: #0b2545;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Hero section */
.hero {
    background-color: #0b2545;
    color: #fff;
    padding: 40px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.hero .subheading {
    color: #dce4ee;
}

.hero-image {
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 6px;
}

/* Home page - about + gallery */
.about {
    margin-bottom: 30px;
}

.gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery img {
    width: 33.33%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

/* Services page */
.services {
    margin-bottom: 30px;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.service-item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.service-item h3 {
    color: #0b2545;
    margin-bottom: 5px;
}

.membership {
    text-align: center;
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 6px;
}

.membership img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin: 15px 0;
}

.membership ul {
    text-align: left;
    display: inline-block;
    margin-top: 10px;
}

/* Contact page */
.contact-details {
    text-align: center;
    margin-bottom: 30px;
}

.contact-details p {
    margin: 5px 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #0b2545;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #133a6e;
}