body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 40px 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

p {
    font-size: 1.2em;
    margin: 15px 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
    background: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.5);
}

section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

footer {
    background: #222;
    color: white;
    padding: 15px 0;
    font-size: 0.9em;
    position: relative;
    bottom: 0;
    width: 100%;
}
