/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #14181c;
    color: #97aebb;;
    line-height: 1.6;
    padding: 50px;
    max-width: 900px;
    margin: auto;
}

h1, h2 {
    color: white;
    text-align: center;
}

p {
    font-size: 1.1em;
    color: #97aebb;
    margin: 20px auto;
    max-width: 700px;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #52fb63;
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 50px;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

li {
    background-color: #1e252c;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

li h3 {
    font-size: 1.6em;
    color:white;
    margin-bottom: 10px;
}

li p {
    color: #97aebb;;
    font-size: 1em;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 30px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 1em;
    }
}
