.forexive-pricing-container {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #111;
}

.forexive-pricing-container .pricing-subtitle {
    color: #888;
    font-size: 13px;
    margin: 0 0 10px 0;
}

.forexive-pricing-container .pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.forexive-pricing-container .pricing-title span {
    background: linear-gradient(90deg, #6A5AE0, #F35AB5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forexive-pricing-container .steps,
.forexive-pricing-container .sub-steps,
.forexive-pricing-container .amounts {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.forexive-pricing-container .tab-btn,
.forexive-pricing-container .sub-tab-btn,
.forexive-pricing-container .amount-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    background: #e6e6e6;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.forexive-pricing-container .tab-btn:hover,
.forexive-pricing-container .sub-tab-btn:hover,
.forexive-pricing-container .amount-btn:hover {
    background: #d0d0d0;
}

.forexive-pricing-container .tab-btn.active,
.forexive-pricing-container .sub-tab-btn.active,
.forexive-pricing-container .amount-btn.active {
    background: linear-gradient(90deg, #6A5AE0, #F35AB5);
    color: #fff;
    font-weight: 600;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.pricing-table td {
    color: #666;
    font-size: 14px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

/* Responsive table */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 12px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }
    
    /* Make table scrollable on mobile */
    .forexive-pricing-container {
        overflow-x: auto;
    }
}

.forexive-pricing-container .start-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #6A5AE0, #F35AB5);
    color: white;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-family: inherit;
}

.forexive-pricing-container .start-btn:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}
