.package-card {
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.package-header {
    background-color: #dc3545;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
}
.price {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
    text-align: center;
    margin-top: 10px;
}
ul {
    list-style: none;
    padding-left: 0;
}
ul li::before {
    content: '\2022';
    color: #dc3545;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}