* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}


.hero {
    background: linear-gradient(to right, #0052cc, #007bff);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero span {
    color: #ffdb4d;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffdb4d;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;

}

.btn:hover {
    background-color: #ffe97d;
}


.section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.section p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
}


.section ul {
    list-style: none;
    padding-left: 20px;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.2rem;
    line-height: 1;
}


.cta {
    background-color: #007bff;
    color: white;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
}

.cta .btn {
    margin-top: 15px;
}

.cta p {
    margin-bottom: 20px;
    text-align: center;
}


footer {
    background-color: #333;
    color: #eee;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
    margin-top: 40px;
}


@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .section ul {
        padding-left: 15px;
    }

    .section ul li {
        padding-left: 25px;
    }
}