.badge-price-one,
.badge-price-two {
   display: inline-block;
   background-color: #e0f7fa;
   color: #00796b;
   padding: 5px 10px;
   border-radius: 5px;
   font-size: 12px;
   margin-bottom: 10px;
   text-align: center;
   white-space: nowrap;
   height: auto; 
   line-height: 1.5; 
   vertical-align: middle; 
}

.price-box {
   display: flex;
   flex-direction: column;
   align-items: flex-start; 
}

.section-prices {
    text-align: center;
    background: white;
    margin-bottom: 0px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #000;
}

.per-time {
    display: block;
    font-size: 20px;
    margin: 10px 0;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    margin: 10px 0;
    font-size: 14px;
}

.tab-link {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-link.active {
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
    border-color: #28a745;
}

.tab-link.active.tab-hovered {
    background-color: #f8f9fa;
    border-color: #ddd;
  	font-weight: normal;
    color: #000;
}

.tab-link:not(.active):hover {
    background-color: #28a745; 
    border-color: #28a745;
    color: #fff;
  	font-weight: bold;
}

.tab-content {
    display: none; 
}

.tab-content.active {
    display: block; 
}