body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    background-color: #ffffff;
    line-height: 1.6;
}

header {
    background: #0f4c81;
    color: #ffffff;
    padding: 20px 0;          /* restore padding */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 26px;
    margin-left: 30px;
    font-weight: bold;
}

.hero {
    background: linear-gradient(135deg, #0f4c81, #1ca7a6);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
}

section {
    padding: 60px 0;
}

h2 {
    color: #0f4c81;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 8px;
    background: #f9fafb;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #1ca7a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.site-logo {
    height: 130px;             /* THIS is the real change */
    width: auto;
    display: block;
}

footer {
    background: #f1f5f9;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}
