.rules {
    margin-top: 100px;
    width: 100%;
    min-height: 100vh;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 40px 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.rules-container {
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    margin: auto;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    font-size: 17px;
    line-height: 1.75;
}

.logo-rules {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
}

.rules-rules {
    width: 100%;
    display: flex;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    gap: 16px;
    align-items: center;
}

.rules-image {
    width: 50px;
    height: 50px;
}

h2, h3 {
    color: #1a202c;
    margin-top: 35px;
    line-height: 1.4;
}

h2 {
    font-size: 26px;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
    color: #4a5568;
}

ul {
    padding-left: 25px;
    margin-bottom: 25px;
}

ul li {
    margin-bottom: 10px;
    color: #4a5568;
    position: relative;
}

ul li::before {
    content: "•";
    color: #000000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

a {
    color: #3182ce;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

strong {
    font-weight: bold;
}