
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #111;
}

.hero {
    background: linear-gradient(135deg, #003b8e, #1e88ff);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.button {
    background: white;
    color: #003b8e;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.services, .about, .contact {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.services h2,
.about h2,
.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003b8e;
}

.service-card {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-top: 0;
    color: #0056cc;
}

.about ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.about li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact {
    text-align: center;
}

footer {
    background: #001f4d;
    color: white;
    text-align: center;
    padding: 20px;
}

.facebook-link {
    color: #adc8ff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.facebook-link:hover {
    color: white;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 700px) {
    .overlay h1 {
        font-size: 2rem;
    }
}
