.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    /* Prevent content overflow */
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
}

.header p {
    font-size: 16px;
    color: #777;
}

.subscription-plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    /* Allow plans to wrap in smaller screens */
}

.banner-base {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.banner-base-text h2 {
    font-size: 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin: 10px 0;
    padding: 0;
}

.banner-base-text {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.pricig-hgt {
    background-color: #fff;
    position: relative;
}

.pricing-container {
    position: relative;
    top: -47px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 85%;
    overflow: hidden;
}

.plan {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    /* Ensure plans don’t get too small on mobile */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Ensure the plan boxes take equal height */
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plan h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    align-self: flex-start;
    /* Keep the heading at the top */
}

.plan-price {
    font-size: 24px;
    color: #89c63d;
    font-weight: bold;
    margin-bottom: 15px;
    align-self: flex-start;
    /* Keep the price at the top */
}

.plan ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    color: #555;
    flex-grow: 1;
    /* Allow <ul> to take up remaining space */
    margin-bottom: 20px;
    /* Add some space below the list */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensure list items are aligned at the top */
    min-height: 130px;
}

.plan ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.plan ul li i {
    margin-right: 10px;
    color: #89c63d;
    /* Blue checkmark icon */
}

/* Adding icon after the list item text using ::after */
.plan ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    background-color: #89c63d;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    font-size: 10px;
}

.plan button {
    padding: 0px 20px;
    background-color: #89c63d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.plan button:hover {
    background-color: #89c63d;
}

.footer-note {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 20px;
}

.footer-note a {
    color: #89c63d;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header h1 {
        font-size: 22px;
    }

    .header p {
        font-size: 14px;
    }

    .plan h2 {
        font-size: 20px;
    }

    .plan-price {
        font-size: 22px;
    }

    .plan button {
        font-size: 14px;
    }

    .subscription-plans {
        flex-direction: column;
        /* Stack plans vertically on smaller screens */
        gap: 20px;
        /* Add space between stacked plans */
    }

    .footer-note {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .header h1 {
        font-size: 20px;
    }

    .plan h2 {
        font-size: 18px;
    }

    .plan-price {
        font-size: 20px;
    }

    .plan button {
        font-size: 12px;
    }
}