body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0b3c5d;
    color: #fff;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: #f4d03f;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 10%;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 20px;
}

.services {
    padding: 40px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
}

.service-box {
    display: inline-block;
    width: 220px;
    margin: 15px;
    vertical-align: top;
}

.service-box img {
    width: 100%;
    border-radius: 6px;
}

.about, .contact {
    padding: 40px;
    background: #f4f4f4;
    text-align: center;
}

footer {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
    padding: 15px;
}
