/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 600;
}

/* HEADER */
.site-header {
    background: #0b2a64;        /* dark blue */
    color: white;
    text-align: center;
    padding: 35px 15px;
}

.site-header h1 {
    font-size: 2.4rem;
    margin-bottom: 5px;
}

.site-header .tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* HERO */
.hero {
    text-align: center;
    padding: 50px 20px;
    max-width: 700px;
    margin: auto;
}

.hero h2 {
    font-size: 2rem;
    color: #0b2a64;
}

.hero p {
    font-size: 1.1rem;
}

/* SERVICES */
.services {
    background: white;
    padding: 40px 20px;
    max-width: 700px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.services h3 {
    text-align: center;
    color: #0b2a64;
}

.services ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.services li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.services li:last-child {
    border-bottom: none;
}

/* CONTACT */
.contact {
    padding: 40px 20px 60px;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.contact h3 {
    color: #0b2a64;
}

form {
    margin-top: 20px;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    background: #0b2a64;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
}

button:hover {
    background: #093156;
}

/* FOOTER */
.site-footer {
    background: #0b2a64;
    color: white;
    text-align: center;
    padding: 20px 15px;
    margin-top: 40px;
    font-size: 0.95rem;
}
