* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

header {
    background: linear-gradient(90deg, #1e293b, #0f172a);
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 36px;
    color: #38bdf8;
}

.hero {
    text-align: center;
    background: #1e293b;
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #facc15;
}

.content h2 {
    margin-bottom: 20px;
    color: #38bdf8;
}

.content ul {
    list-style: square;
    padding-left: 20px;
}

.btn {
    display: inline-block;
    background: #38bdf8;
    color: #000;
    padding: 12px 25px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #facc15;
    transform: scale(1.05);
}

.cta {
    background: #0ea5e9;
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    font-size: 14px;
}

@media(max-width:768px){
    header h1{
        font-size:24px;
    }
    .hero h2{
        font-size:22px;
    }
}
