.pricing-header {
    text-align: center;
    margin: 20px;
    font-size: 24px;
    color: #21E6C1;
}
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}
.pricing-card {
    position: relative;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    width: calc(33.333% - 20px);
    background: #020741; 
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pricing-card h3 {
    margin: 0;
    padding: 10px;
    background: transparent;
    color: #1fd662;
    border-radius: 10px 10px 0 0;
    font-size: 30px;
}
.pricing-card ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    color: #bbbbbb
}
.pricing-card li {
    margin: 0px;
}
.pricing-card .price {
    font-size: 20px;
    margin: 10px 0;
    color: White;
    font-size: 32px
}
.description {
    margin: 26px 0 16px 0px;
    font-style: italic;
    color: #CCCCCC;
    line-height: 1.25; /* Adjust this value as needed */
}
.pricing-card .background-logo {
    position: absolute;
    top: 10px; /* Adjust the position */
    left: 10px; /* Adjust the position */
    width: 100px; /* Adjust the size */
    height: 100px; /* Adjust the size */
    background: url('../files/p.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
}

.white {
    color: #ffffff
}

/* Media Queries */
@media (max-width: 992px) {
    .pricing-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .pricing-card {
        width: calc(100% - 20px);
    }
}
