body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0077be; /* Ocean blue background */
    color: #ffffff; /* White text color for contrast */
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: none;
    padding: 10px 0;
}

.logo {
    float: left;
    color: #ffffff; /* White text color for contrast */
}

.hero {
    color: #ffffff; /* White text color for contrast */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
}

.services, .about, .contact {
    padding: 60px 0;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: space-around;
}

.service {
    width: 30%;
}

footer {
    text-align: center;
    padding: 20px 0;
}
