    /* Pricing Plans Horizontal Layout */
    .wrap {
        background: #FEFFEB;
        border: 2px solid #FF6805;
        padding: 10px;
    }

    .premium-plans {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        font-family: sans-serif;
    }

    .premium-plans .plan {
        flex: 1 1 calc(49.333% - 40px);
        max-width: calc(49.333% - 40px);
        background: #D1EDEA;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    @media (max-width: 768px) {
        .premium-plans .plan {
            flex: 1 1 calc(50% - 40px);
            max-width: calc(50% - 40px);
        }
    }

    @media (max-width: 500px) {
        .premium-plans .plan {
            flex: 1 1 100%;
            max-width: 100%;
        }
    }

    #hdfp {
        background-color: #7609EB;
        color: white;
        border: 2px solid #7609EB;
    }

    #hdpp {
        background-color: #A707EB;
        color: white;
        border: 2px solid #A707EB;
    }

    /* Shared button styles */
    .btn-fp,
    .btn-pp {
        font-size: 15px;
        font-family: sans-serif;
        color: white;
        border: none;
        padding: 8px 16px;
        cursor: pointer;
        border-radius: 4px;
        text-decoration: none;
        display: inline-block;
    }

    .btn-fp {
        background-color: #7609EB;
    }

    .btn-fp:hover {
        background-color: #401805;
    }

    .btn-pp {
        background-color: #A707EB;
    }

    .btn-pp:hover {
        background-color: #442366;
    }

    .features {
        font-size: 18px;
        font-family: sans-serif;
    }

    .p-font-size {
        font-size: 18px;
        font-family: sans-serif;
    }

    h2 {
        line-height: 30px;
        font-size: 25px;
        font-family: sans-serif;
    }

    h1, h2, h3 {
        font-family: sans-serif;
    }

    /* Section label inside list */
    .list-section-label {
        font-weight: bold;
        font-size: 18px;
        margin-top: 8px;
        list-style: none;
    }