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

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

header .logo {
    font-weight: bold;
    font-size: 24px;
}

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

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

.hero h1 {
    font-size: 36px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: #50E3C2;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #eeeeee;
    margin-top: 40px;
    font-size: 14px;
}
