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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d1b2a;
    padding: 20px 40px;
    color: white;
}

.logo img {
    height: 50px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background-color: #1b263b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.services {
    text-align: center;
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
}

.service-card {
    background: white;
    margin: 20px;
    padding: 20px;
    display: inline-block;
    width: 250px;
    vertical-align: top;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #0d1b2a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.socials a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
