.hero-section {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        .pricing-tabs {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 8px;
            margin: 40px 0;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .nav-pills .nav-link {
            border-radius: 12px;
            padding: 15px 40px;
            font-weight: 600;
            color: #6c757d;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, #06bbcc, #0d6efd);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 187, 204, 0.3);
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            height: 100%;
            margin-bottom: 30px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .pricing-card.popular {
            border-color: #06bbcc;
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: linear-gradient(45deg, #06bbcc, #0d6efd);
            color: white;
            padding: 8px 40px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
            text-transform: uppercase;
        }
        
        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            color: #06bbcc;
            line-height: 1;
        }
        
        .plan-price .currency {
            font-size: 1.5rem;
            vertical-align: top;
        }
        
        .plan-price .period {
            font-size: 1rem;
            color: #6c757d;
            font-weight: 400;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list .icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, #06bbcc, #0d6efd);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-list .icon i {
            color: white;
            font-size: 12px;
        }
        
        .btn-plan {
            background: linear-gradient(45deg, #06bbcc, #0d6efd);
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-plan:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 187, 204, 0.4);
            color: white;
        }
        
        .comparison-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .table th {
            background: linear-gradient(45deg, #06bbcc, #0d6efd);
            color: white;
            border: none;
            padding: 20px;
            font-weight: 600;
            vertical-align: middle;
        }
        
        .table td {
            padding: 20px;
            vertical-align: middle;
            border-color: #f1f1f1;
        }
        
        .check-icon {
            color: #28a745;
            font-size: 1.2rem;
        }
        
        .cross-icon {
            color: #dc3545;
            font-size: 1.2rem;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            text-align: center;
            margin: 20px 0;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(45deg, #06bbcc, #0d6efd);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .money-back-guarantee {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .guarantee-badge {
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .faq-header {
            padding: 25px 30px;
            cursor: pointer;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-header h6 {
            margin: 0;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .faq-content {
            padding: 0 30px 25px;
            color: #6c757d;
            display: none;
        }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #06bbcc, transparent);
            border: none;
            margin: 60px auto;
        }
        
        /* NEW STYLES FOR TWO-CARD LAYOUT */
        .two-cards-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .two-cards-container .pricing-card {
            flex: 0 0 calc(50% - 20px);
            max-width: calc(50% - 20px);
            margin: 0 10px;
        }
        
        @media (max-width: 992px) {
            .two-cards-container .pricing-card {
                flex: 0 0 100%;
                max-width: 100%;
                margin: 0 0 30px 0;
            }
            
            .two-cards-container {
                flex-direction: column;
                align-items: center;
            }
        }