/* ----------------------------------------------------------
   Base
---------------------------------------------------------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fafafa;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   Header (logo left, menu right)
---------------------------------------------------------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* aligns menu with bottom of logo */
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.logo {
    height: 100px;
    width: auto;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 5px; /* improves visual alignment */
}

nav a.active {
    color: #0077cc;
}

/* ----------------------------------------------------------
   Hero section (page title + strapline)
---------------------------------------------------------- */

.hero {
    background: #eef6ff;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #d6e6f7;
}

.hero h1 {
    margin: 0 0 10px 0;
    font-size: 2.4rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ----------------------------------------------------------
   Content sections
---------------------------------------------------------- */

.section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section h1,
.section h2 {
    margin-bottom: 10px;
}

.section p {
    margin-bottom: 20px;
}

/* ----------------------------------------------------------
   Lists
---------------------------------------------------------- */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0077cc;
    font-weight: bold;
}

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */

footer {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

@media (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    nav {
        gap: 15px;
    }

    .logo {
        height: 80px;
    }
}