
/* --- 1. Container & Layout --- */
/*.header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f2f2f2;
}*/

    .header .text h1 {
        font-weight: 100;
    }

/* --- 2. The Full-Width Background/Banner Image --- */
.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/6_prices banner-phone.jpg');
    background-size: cover;
    background-position: right bottom;
}

    /* --- 3. The Gradient Fade (Light Grey) --- */
    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: linear-gradient(to right, rgba(242, 242, 242, 1) 0%,*/ /* Start light grey */
        /*rgba(242, 242, 242, 1) 40%, rgba(242, 242, 242, 0) 75%*/ /* Fade to transparent */
        /*);*/
    }

/* --- 4. Overlay Content & Positioning --- */
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 50%;*/
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;
    box-sizing: border-box;
}

/* --- 5, 6, 7. Text and Logo Styling (Vertical Layout) --- */
.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.text h2 {
    font-family: 'Calibre', sans-serif;
    font-size: 3em;
    color: #33C1C1;
    font-weight: 600;
    /* ... rest of H2 styles ... */
}

.text p {
    font-family: 'Calibre', sans-serif;
    font-size: 1.2em;
    color: #999999;
    margin: 0 0 20px 0;
    font-weight: 300;
    /* ... rest of P styles ... */
}

/* ... Logo styles ... */
.tablet-logo {
    width: 70px;
    height: auto;
}

    .tablet-logo img {
        width: 100%;
        display: block;
    }


.card-icon {
    text-align: center;
    padding-bottom: 10px;
}

    .card-icon img {
        width: 150px;
    }

.card-image {
    text-align: center;
}

.imageBorder {
    width: 100%;
    max-width: 420px;
    height: auto;
    box-shadow: var(--soft-shadow);
    object-fit: cover;
    border-radius: 50px;
    border: 4px solid var(--color-yellow);
}



.price-card
{
    overflow: auto;
}


@media (min-width: 768px) {
    .prices-grid {
        column-count: 3;
        column-rule: 2px solid var(--color-yellow);
    }

    .card-image {
        min-height: 328px
    }

   /* .price-card{
        display: grid;
    }

        .price-card .card-icon {
            grid-row: 1;
        }

        .price-card .card-image{
            grid-row: 2;
        }

        .price-card .price-seg {
            grid-row: 3/5;
        }*/
}



@media (min-width: 768px) {
    .card-image {
        min-height: 210px;
    }
}


@media (min-width: 788px) {
    .card-image {
        min-height: 230px;
    }
}

@media (min-width: 870px) {
    .card-image {
        min-height: 245px;
    }
}

@media (min-width: 925px) {
    .card-image {
        min-height: 260px;
    }
}

@media (min-width: 980px) {
    .card-image {
        min-height: 280px;
    }
}

@media (min-width: 980px) {
    .card-image {
        min-height: 280px;
    }
}

@media (min-width: 1080px) {
    .card-image {
        min-height: 300px;
    }
}

@media (min-width: 1150px) {
    .card-image {
        min-height: 320px;
    }
}

