body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f1115;
    color: #e6e6e6;
    line-height: 1.6;
}

section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    border-bottom: 1px solid #1f232b;
}

h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffffff;
}

p {
    color: #b8b8b8;
    font-size: 16px;
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #d0d0d0;
}

section:hover {
    background: #141824;
}

.cta-btn {
    background: #3a7bd5;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease;
}

.cta-btn:hover {
    background: #2f66b3;
    transform: translateY(-2px);
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-title img {
    width: 48px;
    height: 48px;
}

@media (max-width: 600px) {

    body {
        font-size: 15px;
    }

    section {
        padding: 25px 15px;
        border-bottom: 1px solid #1f232b;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 22px;
    }

    ul, ol {
        padding-left: 18px;
    }
}
