body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffa726, #ffd54f);
    color: #2e2e2e;
    text-align: center;
}

header {
    padding: 3rem 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ff7043;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #f4511e;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.feature {
    background: white;
    border-radius: 20px;
    padding: 1rem 2rem;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta {
    padding: 3rem 1rem;
}
