.pcs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .pcs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pcs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pcs-card {
    background-color: #1a1543;
    color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pcs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 21, 67, 0.4), #1a1543);
    z-index: 0;
}


.pcs-card-content {
    flex-grow: 1;
    z-index: 1;
    position: relative;
}

.pcs-card-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #ffffff;
}

.pcs-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.pcs-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pcs-features-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #d1d5db;
}

.pcs-card-footer {
    z-index: 1;
    position: relative;
}

.pcs-button {
    display: inline-block;
    background-color: #ff8210;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #ff8210;
}

.pcs-button:hover {
    background-color: transparent;
    color: #ff8210;
}
