.pricing-table-section {
    padding: 60px 0;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pricing-column {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-column.featured {
    border: 2px solid #1e88e5;
    transform: scale(1.05);
}

.pricing-column.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #1e88e5;
    color: white;
    padding: 5px 40px;
    font-size: 14px;
    transform: rotate(45deg);
}

.discount-tag {
    position: absolute;
    top: -30px;
    right: -30px;
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    position: relative;
}

.pricing-plan-name {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .price {
    font-size: 36px;
    font-weight: bold;
    color: #1e88e5;
    display: block;
}

.pricing-price .period {
    font-size: 14px;
    color: #777;
    display: block;
    margin-top: 5px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: "✓";
    color: #1e88e5;
    position: absolute;
    left: 0;
}

.pricing-features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.pricing-features li.disabled:before {
    content: "✕";
    color: #ff5722;
}

.pricing-cta {
    text-align: center;
}

.pricing-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1e88e5;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pricing-button:hover {
    background-color: #1565c0;
}

.pricing-button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pricing-button.disabled:hover {
    background-color: #ccc;
}

.pricing-faq-section {
    background-color: #f5f7fa;
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .pricing-table {
        justify-content: center;
    }
    
    .pricing-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-column {
        max-width: 100%;
    }
    
    .pricing-column.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-column.featured:hover {
        transform: translateY(-5px);
    }
}
