.content-area {
    font-size: 16px !important;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

/* Table Styling */
.content-area table {
    width: 100%;
    margin: 25px 0;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.content-area table th {
    background-color: #9D2235; /* KTUN Red */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 15px;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.content-area table td {
    padding: 14px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.content-area table tr:last-child td {
    border-bottom: none;
}

.content-area table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.content-area table tbody tr:hover {
    background-color: rgba(22, 50, 105, 0.05); /* KTUN Blue tint */
    transition: background-color 0.3s ease;
}

/* Headings */
.content-area h4 {
    color: #000000; /* Black */
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.content-area h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #9D2235; /* Red accent */
}

.content-area h5 {
    color: #9D2235; /* KTUN Red */
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.content-area h5::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #163269;
    margin-right: 10px;
    border-radius: 50%;
}

/* Lists */
.content-area ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.content-area ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.content-area ul li::before {
    content: '\f054'; /* FontAwesome chevron-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: #9D2235;
    font-size: 12px;
}

/* Paragraphs */
.content-area p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Strong tags */
.content-area strong {
    color: #000000;
    font-weight: 600;
}

/* Images */
.content-area img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
