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

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

header {
    background: linear-gradient(135deg, #0073e6, #00c6ff);
    color: white;
    padding: 60px 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #0073e6;
}

nav ul li {
    padding: 10px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 50px 0;
}

.services, .team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service, .member {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

footer a {
    color: #ff6600;
    text-decoration: none;
}
