* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    font-family: 'Latha', sans-serif;
}

.rules-container {
    width: 85%;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 14px;
    border: 4px solid gray; /* Red border */
    box-shadow: 0 0 18px rgba(0,0,0,0.15);
}

.rules-heading {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #b32b29;
    margin-bottom: 25px;
}

.rules-list {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    padding-left: 20px;
    font-weight:500;
}

.rules-list li {
    margin-bottom: 14px;
}
@media (max-width:768px){
    .rules-heading{
        font-size:19;
    }
    .rules-list{
        font-size:14px;
    }
    .rules-list li{
        font-size:14px;
    }

}