/* Base Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: white;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin: 0;
}

/* Sections */
section {
    margin: 30px auto;
    padding: 30px;
    max-width: 800px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

h2 {
    font-size: 1.8em;
    color: #007BFF;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* List Styling */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 12px 0;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007BFF;
    font-size: 1.2em;
}

/* Links */
a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 10px;
    background: #1f1f1f;
    color: #ccc;
    font-size: 0.9em;
    margin-top: 40px;
}
