
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background: linear-gradient(to bottom right, #FFD700, #FF6347);
    text-align: center;
    padding: 50px;
    color: white;
}

.cta-button {
    background-color: #FF6347;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.nav ul {
    display: flex;
    list-style: none;
    background-color: #333;
    justify-content: center;
    padding: 10px;
    margin: 0;
}

.nav ul li {
    margin: 0 15px;
}

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

.section {
    padding: 20px;
    text-align: center;
}

.section h2 {
    color: #FF6347;
}

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