.table-title h2 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 800;
    color:black;
}
.pricing-table {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.table-heading {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.pricing-option {
    flex: 1;
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    color: white;
    padding: 25px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    min-height:65px;
}

.pricing-option::before {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.pricing-option.active {
    transform: scale(1.05);
}
/* Colouring based on type of check */
#apk-option.active {
    background: linear-gradient(135deg, #3c78e7 0%, #2b41c0 100%);
}
#bronze-option.active {
    background: linear-gradient(135deg, #cd7f32 0%, #a65e24 100%);
}
#silver-option.active {
    background: linear-gradient(135deg, #c0c0c0 0%, #7f7f7f 100%);
}
#gold-option.active {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
}
.pricing-option h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color:#fff;
}

.pricing-option .price {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color:#fff;
}

.table-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.table-features.active {
    max-height: 2000px;
    opacity: 1;
}

.feature-row {
    display: none;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out;
}

.feature-row.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px ;
}
.feature-inclusion {
    padding: 12px 15px;
    margin: 8px 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 16px;
    color: #555;
}
/* colouring features based on type of check */
#apk-features .feature-inclusion {
    border-left: 4px solid #3c78e7;
}
#apk-features .feature-name {
    border-bottom: 3px solid #3c78e7;
}
#bronze-features .feature-inclusion {
    border-left: 4px solid #cd7f32;
}
#bronze-features .feature-name {
    border-bottom: 3px solid #cd7f32;
}
#silver-features .feature-inclusion {
    border-left: 4px solid #c0c0c0;
}
#silver-features .feature-name {
    border-bottom: 3px solid #c0c0c0;
}
#gold-features .feature-inclusion {
    border-left: 4px solid #ffd700;
}
#gold-features .feature-name {
    border-bottom: 3px solid #ffd700;
}

.feature-inclusion::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .table-heading {
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
@media (max-width: 500px) {
    .pricing-option h2 {
        font-size: 13px;
    }
    .pricing-option .price {
        font-size: 15px;
    }
    .feature-name {
        font-size: 15px;
    }
    .pricing-table {
        padding: 0px;
    }
}