@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #e0e0e0;
}

header {
    background: #1f1f1f;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid #ff4500;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

main {
    padding: 20px;
    margin: 0 20px;
}

section {
    background: #1f1f1f;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
    border-bottom: 2px solid #ff4500;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: #333;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

li:hover {
    background: #ff4500;
}

footer {
    text-align: center;
    padding: 20px;
    background: #1f1f1f;
    color: #fff;
    border-top: 3px solid #ff4500;
}
