table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fcfcfc;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #cce7f0;
    color: #000;
    font-weight: bold;
    text-align: center;
}

td {
    background-color: #fefefe;
    vertical-align: top;
}

tr:nth-child(odd) td {
    background-color: #f9f9f9;
}

.highlight {
    font-weight: bold;
}

ul {
    padding-left: 20px;
    margin: 0;
}

ul li {
    margin-bottom: 5px;
}

.container_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;    
    margin: 0 auto;
}

.container_1 .card {
    width: 48%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-header .number {
    width: 40px;
    height: 40px;
    background-color: #007acc;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    position: relative;
}

.card-header .number:nth-child(1) {
    background-color: #009966; /* Green */
}

.card-header .number:nth-child(2) {
    background-color: #ff9933; /* Orange */
}

.card-header .number:nth-child(3) {
    background-color: #66cccc; /* Light Blue */
}

.card-header .number:nth-child(4) {
    background-color: #0066cc; /* Blue */
}

.card-header .title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.container_1 .content {
    padding-left: 10px;
    background:#ddd;
    padding:2rem;
}

.container_1 .content p {
    margin-bottom: 10px;
    color: #333;
}

.container_1 .content p strong {
    color: #cc3300;
    font-weight: bold;
}