.pricing-comparison-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.pricing-card-free,
.pricing-card-freemium {
    border: 2px solid #1a4d2e;
    background: #fff !important;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card-freemium h3,
.pricing-card-freemium p {
    color: #1a4d2e !important;
}

.pricing-table-header {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 24px;
    font-weight: 600;
    align-items: center;
}

/* .pricing-table-header h3 {
    font-size: 20px;
    margin: 0;
    color: #000;
} */

.pricing-table-header h2:first-child {
    flex: 3;
    text-align: left;
}

.pricing-table-header h2:nth-child(2),
.pricing-table-header h2:nth-child(3) {
    flex: 1;
    text-align: center;
}

.pricing-table-subtitle {
    display: flex;
    padding: 16px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.pricing-table-subtitle div:first-child {
    flex: 3;
}

.pricing-table-subtitle p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #1a4d2e;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    padding: 0 8px;
}

.pricing-table-body {
    padding: 0;
}

.pricing-table-row {
    display: flex;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.pricing-table-row .feature-name {
    flex: 3;
}

.pricing-table-row .feature-value {
    flex: 1;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.feature-name {
    color: #000;
}

.feature-name strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a4d2e;
}

.feature-description {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}

.feature-value {
    text-align: center;
    font-size: 24px;
    padding-top: 2px;
}

.feature-value i {
    display: inline-block;
}

.feature-check {
    color: #22c55e;
}

.feature-cross {
    color: #ef4444;
}

@media only screen and (max-width: 768px) {
    .pricing-table-header,
    .pricing-table-row {
        grid-template-columns: 2fr 1fr 1fr;
        padding: 16px 12px;
    }
    
    .pricing-table-header h2 {
        font-size: 14px;
    }
    
    .feature-name strong {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .feature-description {
        font-size: 12px;
    }
    
    .feature-value {
        font-size: 18px;
    }
}
