body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-sizing: border-box;
    margin: 0;
}
.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.title {
    text-align: center;
}
.main-list {
    list-style: decimal;
    padding-left: 20px;
}
.main-list li {
     margin-bottom: 15px;
}
.main-list li::marker {
    font-weight: bold;
    color: #2c3e50;
}

.main-list li ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

h3, h4 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 10px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact p {
    line-height: 1.6;
    color: #444;
}

.contact span {
    color: #444;
}

