.pricing-section {
    background-color: #2e2d2d;
    padding: 1.8rem 1rem;
    text-align: center;
}
.pricing {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: #2db7e3;
    margin-bottom: 1.5rem;
}
  
.pricing-description {
    font-size: 1.5rem;
    color: white;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 2.75rem;
    width: 100%;
    max-width: 1366px;
}

.grid-services {
    display: grid;
    line-height: 2rem; 
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    max-width: 1366px;
}

.card-gallary {
    border: solid 1.5px white;
    font-size: 1.3rem;
    padding: 1.5rem;
    color: white;
    border-radius: 35px;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    justify-content: center;
}

.price {
    font-weight: bold;
}

.price-title {
}

.card-gallary:hover, .card-gallary:focus {
    transform: scale(1.1);
    transition: transform 0.5s;
}

.disclaimer {
    justify-items: center;
}

.disclaimer-title {
}

.disclaimer-title-icon {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color:#ffff00;
    font-size: 1.75rem;
    font-weight: bold;
}

.disclaimer-icon {
    font-size: 32px;
    margin-right: 8px; 
}

.disclaimer-desc {
    color: white;
    font-size: 1.3rem;
    justify-items: center;
    align-items: center;
    max-width: 1366px;
    line-height: 2rem;    
}
  
/* Gallery View */
@media screen and (min-width: 1024px) {
    .grid-services {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media screen and (max-width: 1191px) {
    .grid-services {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (max-width: 986px) {
    .grid-services {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 781px) {
    .grid-services {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 592px) {
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 402px) {
    .grid-services {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile View */
@media screen and (max-width: 480px) {
    .pricing-title, .add-ons-title, .disclaimer-title-icon {
        font-size: 1.5rem;
    }
    .pricing-description {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.25rem;
    }
    .grid-services, .disclaimer-desc {
        gap: 1rem;
        line-height: 1.25rem;
    }
    .card-gallary{
        font-size: 1rem;
        padding: 1rem;
    }
    .disclaimer-icon {
        font-size: 30px;
    }    
}
