/* Style2 pod rules-product.html */
body {
    font-family: Arial, sans-serif;
    background-color: #fff8e8;
    color: #fff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #585858;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.rules-section {
    padding: 50px;
    text-align: center;
    color: #000;
}

.rules-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.rules-section .rules-list {
    text-align: left;
    margin: 0 auto;
    max-width: 800px;
    color: #000;
}

.rules-section .rules-list h3 {
    margin-top: 20px;
    font-size: 24px;
}

.rules-section .rules-list p {
    font-size: 18px;
}

.rules-section .back-button {
    background-color: #0099cc;
    padding: 15px 30px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    margin-top: 30px;
    display: inline-block;
    transition: background-color 0.3s;
}

.rules-section .back-button:hover {
    background-color: #006f8e;
}

footer {
    background-color: #333;
    padding: 20px;
    text-align: center;
}

footer .footer-logo img {
    height: 50px;
}

footer .footer-links ul {
    list-style: none;
    padding: 0;
}

footer .footer-links ul li {
    margin: 10px 0;
}

footer .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-links ul li a:hover {
    color: #0099cc;
}

footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #111;
}
