.tiers-prev-container {
    font-family: Arial, sans-serif;
    margin-top: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.tiers-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.tier {
    background-color: #303030;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 300px;
    height: 310px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: content-box;
}

.tier h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #ffffff;
    min-height: 30px;
}

.tier ul {
    list-style: none;
    padding: 0;
}

.tier ul li {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #e0e0e0;
}

.tier-price {
    font-size: 2rem;
    color: #e0e0e0;
    min-height: 40px;
    margin-bottom: 20px;
}

.subscribe-btn {
    /* background-color: #f7f447; */
    background-color: #ffdd00;
    color: #101010;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #f7f447;
}

/* Emphasized Tier */
.emphasized {
    box-shadow: inset 0 0 10px #ffdd00;
    position: relative;
}

/* "Best Value" Badge */
.best-value {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffdd00;
    color: #101010;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 1;
}

/* Ensuring all boxes are of equal height */
.tiers-container .tier {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.month-span {
    font-size: 0.9rem;
}

@media (max-width: 700px) {
    .tiers-container {
        flex-direction: column;
        gap: 20px;
    }

    .tiers-prev-container {
        font-family: Arial, sans-serif;
        margin-top: 20px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 1200px;
    }
}