/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1e1e1e;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Header */
h1, h2, h4 {
    color: #ffffff;
}

/* Icons */
i {
    margin-right: 0.5rem;
}

/* Links */
a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #ff4081;
}

/* Sections */
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 5px;
    margin-top: 30px;
}

h4 {
    font-size: 1.2em;
    margin-top: 20px;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #333;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
