.price_wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.price_container {
    padding: 0;
    background: #d3d3d3;
    /* border-radius: 12px; */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 27%;
    /* margin-top: 200px; */
}

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

.price_header h1 {
    height: fit-content;
    margin: 0;
    font-size: 2.5em;
    color: #4b4b4b;
    /* background-color: #2c3e50; */
    padding: 0;
}

.price_header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    color: #7f8c8d;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;

}

.price-list li {
    padding: 0 20px;
    margin: 0;
    /* background: #f9f9f9; */
    /* border-radius: 8px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-list li:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #2c3e50; */
    width: 100%;
    padding: 10px;
}

.price-item p {
    margin: 0;
    font-size: small;
    color: rgb(97, 97, 97);
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.411); */
}

.price-item span {
    font-size: small;
    font-weight: bold;
    color: #16a085;
}

.price_footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #7f8c8d;
}

.price_footer p {
    margin: 0;
}

.space_div {
    height: 150px;
}

.price_image_header {
    height: 250px;
    /* Adjust height as needed */
    display: flex;
    align-items: last baseline;
    justify-content: center;
    color: white;
    /* Ensure text is visible on the background */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    background-image: url('../img/families/resize/JPEG/_MG_6245.jpg');
    background-size: cover;
    background-position: top;
    padding: 20px;
}

@media (max-width: 768px) {
    .price_wrapper {
        display: block;
        /* background-color: #7f8c8d; */
        padding-bottom: 100px;
    }

    .price_container {
        width: 97%;
        margin: 20px auto;
    }

    .price-item span {
        margin-top: 10px;
    }
}