* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #eee;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    background-color: #333;
    color: #eee;
    padding: 20px 10px;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 22pt;
    font-weight: bold;
}

header .nav-links {
    list-style: none;
    display: flex;
}

header .nav-links li {
    margin: 0 20px;
}

header .nav-links a {
    text-decoration: none;
    color: #eee;
    font-size: 16pt;
    transition: all 0.3s ease;
}

header .nav-links a:hover {
    color: #333;
    background-color: #eee;
    border-radius: 50px;
    padding: 10px 10px;
}

.hero {
    background-color: #eee;
    color: #333;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.3em;
    margin-top: 10px;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-button {
    background-color: #333;
    color: #eee;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    margin: 10px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #eee;
    color: #333;
}

.cta-button:active {
    background-color: #555;
    color: #fff;
}

footer {
    background-color: #333;
    color: #eee;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 12pt;
}