/* Payment Modal Styles */
.pricing-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.plan-card {
    flex: 1;
    min-width: 250px;
    background: #34495e;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.plan-card:hover {
    border-color: #3498db;
}

.plan-card h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #2c3e50;
}

.features li:last-child {
    border-bottom: none;
}

.select-plan {
    background: #27ae60;
    margin-top: 1rem;
}

.select-plan:hover {
    background: #229954;
}

#payment-form {
    background: #2c3e50;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-section {
        flex-direction: column;
    }
    
    .plan-card {
        min-width: 100%;
    }
}
