/* Color Variables */
:root {
    --text-color: #fff;                      /* White for text */

    --theme-color: #1E3E62;
    --background: #0B192C;
    --accent-color: #FF6500;
}


#price {
    min-height: 40dvh;
    display: flex;
    justify-content: center;
    padding-top: 120px;
}

#pricing-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#pricing-cards{
    min-height: 60dvh;
}

#pricing-cards .card1s > :nth-child(2){
    box-shadow: 0 0 50px 5px #FF6500;
    border: 3px solid var(--accent-color);
}

#pricing-cards .card1s .card1{
    flex:0 1 350px;
}




.pricing-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.pricing-list .not-included {
    opacity: 0.3;
    position: relative; 
    z-index: 1; /* Ensure the main container has a base z-index */
}

.pricing-list .not-included::before {
    content: "";
    position: absolute;
    top: 40%; 
    width: 100%;
    height: 2px;
    background-color: var(--text-color); /* Adjust color as needed */
    z-index: 0; /* Lower z-index to keep the line below other content */
}




.pricing-list div img {
    height:30px;
}

.pricing-list div h6 {
    font-size: 23.5px;
    font-weight: 100 !important;
}

.price {
    align-items: center;
}

.price h6 {
    color: rgb(179, 179, 179);
}

#meerinfo {
    min-height: 20dvh !important;
}

#meerinfo div {
    display: flex;
    gap: 30px;
}


@media screen and (max-width: 1035px){
    #meerinfo div h2 {
        font-size: 45px;
    }
}


@media screen and (max-width: 1000px){
    #pricing-section h2 {
        font-size: 45px;
    }
}

@media screen and (max-width: 835px){
    #meerinfo div h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 800px){
    #pricing-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #pricing-section h2 {
        text-align: center;
    }

    #meerinfo div {
        flex-direction: column;
        gap: 15px;
    }
    #meerinfo div h2{
        font-size: 25px;
        text-align: center;
    }
    #meerinfo div button{
        width: 95%;
    }
}

