/* --- Rules and Regulation Section --- */
.rr-section {
    background-color: #ffffff;
    padding-top: 200px;
    padding-bottom: 80px;
}

.rr-container {
    max-width: 1440px;
    padding-left: 160px;
    padding-right: 160px;
    margin: 0 auto;
}

.rr-header {
    margin-bottom: 40px;
}

.rr-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #0d1b2a;
    margin-bottom: 10px;
}

.rr-header .sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Blocks */
.rr-block {
    margin-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 40px;
}

.rr-block:last-of-type {
    border-bottom: none;
}

.rr-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #0d1b2a;
    margin-bottom: 25px;
}

.rr-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rr-list {
    list-style: none;
    padding-left: 0;
}

.rr-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
    position: relative;
    padding-left: 25px;
}

.rr-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #cbd5e1;
    font-size: 18px;
    top: -2px;
}

/* Warning/Info Box */
.rr-info-box {
    background-color: #FFFBEB;
    border-left: 4px solid #FACC15;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.rr-info-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: #92400e;
}

/* Tables in RR */
.rr-table-wrapper {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rr-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.rr-table th {
    background-color: #f8fafc;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #06142d;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.rr-table td {
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.rr-table.sanksi th {
    background-color: #ff7675; /* Red background from the image */
    color: #000000;
    font-weight: 800;
}

.rr-table.sanksi th:last-child {
    text-align: left;
}

.rr-table.sanksi td:last-child {
    text-align: left;
    font-weight: 700;
}

/* Flex Row for side-by-side */
.rr-row {
    display: flex;
    gap: 40px;
}

.rr-row .rr-block {
    flex: 1;
    border-bottom: none;
}

@media (max-width: 1024px) {
    .rr-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .rr-table-wrapper {
        overflow-x: auto;
    }
    .rr-table {
        min-width: 600px;
    }
    .rr-row {
        flex-direction: column;
        gap: 0;
    }
    .rr-row .rr-block {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .rr-section {
        padding-top: 30px !important;
    }

    .rr-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .rr-header h2 {
        font-size: 32px;
    }

    .rr-block h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .rr-block p {
        font-size: 14px;
    }

    .rr-list li {
        font-size: 14px;
    }
}

