.pricing-container {
    width: 80%;
    margin: 0 auto;
}
.pricing-table {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}
.pricing-box {
    width: 400px;
    padding: 30px ;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    background: #f8f8f8;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.pricing-box:hover {
    transform: scale(1.05); /* Slight zoom-in effect */
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}
.pricing-box .plan-title {
    font-size: 40px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}
.pricing-box .price {
    font-size: 30px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 15px;
}
.pricing-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
   
}
.pricing-box ul li {
    font-size: 20px;
    margin: 5px 0;
    padding: 5px;
}
.pricing-box a {
    padding: 10px 25px;
    font-size: 20px;
    color: white;
    background-color: #0073aa;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
}
.pricing-box a:hover {
    background-color: #005f88;
}
.entry-content > :not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
   max-width: none !important; /* Remove max-width constraint */
   width: 100% !important;     /* Full width */
}
