@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Open+Sans&family=Vollkorn&display=swap');

    .bookpkg-hero {
        background: url('/images/book-publishing-package-main.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        height: 80vh;
        position: relative;
        overflow: hidden;
    }

    .bookpkg-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        /* dark overlay for readability */
        z-index: 1;
    }

    .bookpkg-hero .text-center {
        position: relative;
        z-index: 2;
    }

    .bookpkg-title {
        font-family: 'Libre Baskerville', serif;
        font-size: 3.5rem;
        font-weight: 900;
        margin: 0;
    }

    /* -------------- */
    .bookpkg-section-title {
        font-family: 'Vollkorn', serif;
        font-weight: 700;
        font-size: 50px;
    }

    .bookpkg-subtext {
        font-size: 1.1rem;
        margin: auto;
        color: #0B2447;
    }

    .bookpkg-card {
        border: 1px solid #e4e4e4;
        /* padding: 2rem 1rem; */
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }



    .bookpkg-price-pill {
        font-size: 2rem;
        font-weight: bold;
        font-family: 'Vollkorn', serif;
        border: 2px solid #222;
        border-radius: 50px;
        display: inline-block;
        padding: 10px 24px;
        margin-bottom: 1rem;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .bookpkg-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 60%;
        margin-bottom: 0.5rem;
        color: #222;
    }

    .bookpkg-divider svg {
        width: 20px;
    }

    .bookpkg-divider::before,
    .bookpkg-divider::after {
        content: "";
        flex: 1;
        height: 2px;
        background: #222;
    }


    .bookpkg-card-title {
        font-family: 'Vollkorn', serif;
        font-size: 1.5rem;
        font-weight: bolder;
        /* margin-top: 0.5rem; */
        display: inline-block;
        /* padding-bottom: 6px; */
    }

    .bookpkg-feature-list {
        width: 80%;
        max-width: 240px;
        margin: auto;
    }

    .bookpkg-feature-list li {
        font-size: 1.1rem;
        color: #222;
        padding: 8px 0;
        border-bottom: 1px solid #f1f1f1;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.5;
        text-align: start;
    }

    .bookpkg-feature-list li i {
        color: #0B2447;
        flex-shrink: 0;
        width: 24px;
        text-align: start;
        font-size: 1.2rem;
        margin-top: 2px;
    }