/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
}

header.hero-section {
    background: linear-gradient(90deg, black, red);
    text-align: center;
    padding: 100px 20px;
}

header.hero-section .content {
    max-width: 900px;
    margin: auto;
}

header.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

header.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    background-color: red;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: darkred;
}

.benefits-section, .steps-section {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit {
    max-width: 300px;
}

.steps-section ol {
    list-style-type: decimal;
    margin: 20px auto;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #fff;
}
