.pricing-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    padding: 40px 20px;
    color: #2c3e50;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 32px;
}

.pricing-section .payment-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-section .toggle-container {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px;
    display: flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-section .toggle-option {
    padding: 12px 30px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2c3e50;
}

.pricing-section .toggle-option.active {
    background: #1E88E5;
    color: white;
}

.pricing-section .pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.pricing-section .pricing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pricing-section .pricing-card.popular {
    border: 2px solid #1E88E5;
}

.pricing-section .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E88E5;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-section .plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pricing-section .plan-description {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
    min-height: 60px;
}

.pricing-section .price {
    font-size: 48px;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 5px;
}

.pricing-section .price-period {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 30px;
    min-height: 20px;
}

.pricing-section .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-section .features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.5;
}

.pricing-section .features li::before {
    content: "-";
    color: #1E88E5;
    font-weight: bold;
    font-size: 16px;
    width: 24px;
    flex-shrink: 0;
    margin-right: 8px;
}

.pricing-section .btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-section .btn-primary {
    background: #1E88E5;
    color: white;
}

.pricing-section .btn-primary:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.pricing-section .btn-secondary {
    background: transparent;
    color: #1E88E5;
    border: 2px solid #1E88E5;
}

.pricing-section .btn-secondary:hover {
    background: #1E88E5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

@media (max-width: 1024px) {
    .pricing-section .pricing-table {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-section .pricing-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .pricing-section .toggle-option {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pricing-section h1 {
        font-size: 24px;
    }

    .pricing-section .plan-name {
        font-size: 20px;
    }

    .pricing-section .price {
        font-size: 36px;
    }
}