/* Standard Package - Green (#4DB175) */
.post-data .wp-block-table:first-of-type tr:first-child td,
.post-data ul.wp-block-list:first-of-type li {
    background-color: #4DB175;
    color: white;
}

/* Deluxe Package - Dark Green (#14753B) */
.post-data .wp-block-table:nth-of-type(2) tr:first-child td,
.post-data ul.wp-block-list:nth-of-type(2) li {
    background-color: #14753B;
    color: white;
}

/* Deluxe Plus Package - Yellow (#FFD242) */
.post-data .wp-block-table:nth-of-type(3) tr:first-child td,
.post-data ul.wp-block-list:nth-of-type(3) li {
    background-color: #FFD242;
    color: #333; /* Dark text for better contrast */
}

/* Executive Package - Orange (#DE9700) */
.post-data .wp-block-table:nth-of-type(4) tr:first-child td,
.post-data ul.wp-block-list:nth-of-type(4) li {
    background-color: #DE9700;
    color: white;
}

/* Additional styling for better appearance */
.post-data .wp-block-table tr:first-child td {
    font-size: 1.2em;
    padding: 10px;
    text-align: center;
}

.post-data ul.wp-block-list li {
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-weight: bold;
}