.price-table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.price-table-plan {
    /*border: 2px solid #fff;*/
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0px 10px #fff;
    transition: transform 0.3s ease;
	font-family: 'Poppins', RocknRoll One, Arial;
}

.price-table-plan:hover {
    transform: translateY(-5px);
}

.featured-plan {
    border: 5px double #009506 /*#4CAF50*/;
    position: relative;
}

.featured-plan::before {
    content: "+ POPULAR";
    position: absolute;
    top: -15px;
    right: 90px;
    background: #4CAF50;
    color: white;
    padding: 5px 13px;
    border-radius: 25px;
    font-size: 15px;
}

.plan-title {
    font-size: 24px;
    margin: 0 0 10px;
    /*color: #13144a;*/
	color: #13144a;
}

.plan-price {
    margin: 15px 0;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: /*#4CAF50*/#009506;
}

.price-period {
    font-size: 14px;
    color: #777;
}

.sub-title{
	font-size: 19px;
    margin: 0 0 10px;
	color: #13144a;
	font-weight: 500;
    margin: 20px 0px -15px 0px;
    text-decoration-line: underline;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
	color: #13144a;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #d1d1d1;
}

.plan-button {
    display: inline-block;
    padding: 10px 20px;
    background: #009506/*#4CAF50*/;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.plan-button:hover {
    background: #45a049;
}

.featured-plan .plan-button {
    background: /*#ff5722*/ /*#ff0000*/ #009506;
}

.featured-plan .plan-button:hover {
    background: #e64a19;
}