* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

header {
    background: #0b3c5d;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    width: 150px;
    height: auto;
}

.header-text h1 {
    margin-bottom: 5px;
}


nav {
    background: #092f47;
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background: #0b3c5d;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    background: #f4f7fa;
}

.section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0b3c5d;
}

.section.gray {
    background: #f4f7fa;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
    background: #092f47;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
