/* Default (desktop) */
.header-logo img {
    height: 70px;
}

/* Mobile devices */
@media (max-width: 767px) {
    .header-logo img {
        height: 50px; /* adjust as needed */
    }
} 


.content-description ol {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-description ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

.content-description ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
}

.content-description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-description ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.content-description ul li::before {
    content: "\f058"; /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 14px;
}

.content-description b,
.content-description strong {
    color: var(--primary);
    font-weight: 600;
}
.content-description p {
    margin-bottom: 12px;
}

.content-description li {
    line-height: 1.6;
}


.content-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.content-description table th,
.content-description table td {
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.content-description table thead th {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.content-description table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.content-description table tbody tr:hover {
    background-color: rgba(34, 96, 191, 0.08); /* primary with opacity */
}

.content-description table {
    border-radius: 6px;
    overflow: hidden;
}

.content-description table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}


