#pkgContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pkgSection img {
    width: 50vw;
    height: 30vw;
    margin-right: 3vw;
}

#pkgSection h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
}

#pkgSection {
    background-color: var(--header-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* .innerPkgContainer {
    display: flex;
    flex-direction: row;
    gap: 3rem;
} */

.priceContainer {
    float: right;
    /* border: .009rem solid black;
    border-radius: 1rem; */
    width: 30%;
    /* height: 12rem; */
    padding: 1rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    background-color: rgb(231, 236, 238);
    border: 1px solid #001321;
    /* Softer than black */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Adds depth */
    border-top: 4px solid #007bff;
    /* Keeps your blue as a professional accent */
}

.priceContainer h4 {
    margin: 0 0 .5rem 0;
}

.priceContainer h5 {
    margin: 0;
}

.priceContainer a {
    border: 1px solid #007bff;
    border-radius: .5rem;
    width: 75%;
    padding: .5rem .75rem .5rem .75rem;
    color: white;
    text-decoration: none;
    align-self: center;
    font-size: .87rem;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    background-color: #007bff;
}

.priceContainer a:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.noFees {
    font-size: .65rem;
    color: #6c757d;
    margin: 0 0 .75rem 0;
}

@media (max-width: 650px) {
    #pkgSection h2 {
        font-size: 1.25rem;
    }

    #pkgSection img {
        width: 50vw;
        height: 40vw;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    #pkgSection p {
        font-size: .75rem;
    }

    #pkgSection ul {
        font-size: .75rem;
    }

    #pkgSection h5 {
        margin: 0;
    }

    .innerPkgContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .priceContainer {
        height: 20vh;
        width: 80%;
        order: 99;
        margin-bottom: 0;
    }

    #pkgSection .noFees {
        font-size: .65rem;
    }

    .priceContainer h4 {
        font-size: 1rem;
    }

    .priceContainer h5 {
        font-size: .95rem;
    }

    .priceContainer a {
        font-size: .5rem;
    }
}