/* General Styles */
body {
    font-family: 'Century Gothic', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f0f0;
}

header img {
    max-width: 100%;
    height: auto;
}

h1 {
    margin: 20px 0;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #0056b3;
}

section {
    padding: 50px 0;
    text-align: center;
}

ul {
    list-style: none;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
