@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f4f6f8;
    color: #333;
}

header {
    background: #1e293b;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header p {
    margin-top: 5px;
    color: #d1d5db;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

section:hover {
    transform: translateY(-3px);
}

h2 {
    border-bottom: 2px solid #2563eb;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: #f9fafb;
    margin: 10px 0;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

li:hover {
    background: #e0e7ff;
    cursor: pointer;
}

strong {
    color: #2563eb;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}