.package-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
}

.package-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 400px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;

}

.package-card-content {
    text-align: center;
}