﻿* {
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 30px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

h1 {
    text-align: center;
    color: #005a9c;
}

h2 {
    margin-top: 30px;
    color: #333;
    border-bottom: 2px solid #005a9c;
    padding-bottom: 5px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

p {
    font-size: 1.1em;
    margin-top: 10px;
}

a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    background: #0078d4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}

    a:hover {
        background: #005fa3;
    }
