<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Container styling */
.statute-container {
    background-color: #FDF9F4;
    padding: 10px;
    width: 100%;
    margin: 20px auto;
}

/* Header Styling */
.statute-header {
    display: flex;
    align-items: center;
    background-color: #E5E6E8;
    padding: 12px 15px;
    font-weight: bold;
    color: #27467A;
    position: relative;
    border-radius: 5px;
}

/* 'A' Icon */
.statute-icon {
    background-color: #27467A;
    color: #fff;
    font-weight: bold;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    bottom: 20px;
    right: 30px;
}

/* Corner Design */
.statute-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    background-color: #FF9A1E;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Individual Statute Items */
.statute-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 12px;
    margin-left: 50px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Numbering */
.statute-number {
    background-color: #FF9A1E;
    color: white;
    font-weight: bold;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    bottom: 20px;
    right: 30px;
}

/* Text */
.statute-text {
    flex-grow: 1;
    color: #27467A;
}

/* Download Icon */
.statute-download i {
    color: #27467A;
    font-size: 18px;
}


/* Container styling */
.statute-container-mobile {
    background-color: #FDF9F4;
    padding: 10px;
    width: 100%;
    margin: 20px auto;
}

/* Header Styling */
.statute-header-mobile {
    display: flex;
    align-items: center;
    background-color: #E5E6E8;
    padding: 12px 15px;
    font-weight: bold;
    color: #27467A;
    position: relative;
    border-radius: 5px;
}

/* 'A' Icon */
.statute-icon-mobile {
    background-color: #27467A;
    color: #fff;
    font-weight: bold;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    padding-top: 4px;
    right: 30px;
}

/* Corner Design */
.statute-corner-mobile {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    background-color: #FF9A1E;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Individual Statute Items */
.statute-item-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 15px;
    margin-top: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Numbering */
.statute-number-mobile {
    background-color: #FF9A1E;
    color: white;
    font-weight: bold;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    right: 30px;
}

/* Text */
.statute-text-mobile {
    flex-grow: 1;
    color: #27467A;
    line-height: 1.3;
}

/* Download Icon */
.statute-download i {
    color: #27467A;
    font-size: 18px;
}

 .half-underline {
     display: inline-block;
     position: relative;
     font-size: 18px;
     font-weight: bold;
     text-decoration: none;
     color: #333;
 }

 .half-underline::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -4px;
     width: 50%;
     height: 3px;
     background-color: #27467A;
 }



</pre></body></html>