:root {
    --navy: #1B2A41;
    --teal: #2A9D8F;
    --light: #f7f9fb;
    --text: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    color: var(--text);
    line-height: 1.6;
    background: white;
}

header {
    text-align: center;
    padding: 60px 20px;
    background: var(--navy);
    color: white;
}

h1 {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 2px;
}

.tagline {
    color: #d9e2ec;
}

section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.hero {
    text-align: center;
}

.service {
    border-left: 4px solid var(--teal);
    padding-left: 20px;
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 40px;
    background: var(--light);
    font-size: 0.9rem;
}
