body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: rgb(22,61,136);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid rgb(147,175,184);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 60px;
    width: auto;
}

header nav {
    display: flex;
    gap: 15px;
}

header a {
    text-decoration: none;
    color: rgb(22,61,136);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header a:hover {
    color: #ffffff;
    background-color: rgb(95,160,194);
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    color: rgb(22,61,136);
}

.hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
}

.hero p {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333333;
}

.hero button {
    padding: 10px 20px;
    background-color: rgb(22,61,136);
    color: #ffffff;
    border: none;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: rgb(95,160,194);
}

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

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;
}

.services .service {
    display: inline-block;
    width: 200px;
    margin: 15px;
    padding: 20px;
    background-color: rgb(136,206,229);
    color: rgb(22,61,136);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.services .service h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000000;
}

footer {
    background-color: #ffffff;
    color: rgb(22,61,136);
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgb(147,175,184);
}

footer a {
    color: rgb(22,61,136);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: rgb(95,160,194);
}
