/* Start custom CSS for html, class: .elementor-element-b33e5ae */.product-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .product-image-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .product-box {
    position: relative;
    width: 300px;
    height: 364px;
    background: linear-gradient(135deg, #17a43b 0%, #285078 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
  }

  .product-icon {
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .product-label {
    text-align: center;
    margin-bottom: 1rem;
  }

  .practice-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .software-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
  }

  .pdf-badge {
    position: absolute;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #17a43b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  }

  .demo-btn:hover {
    background: #234a66;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  }

  .product-details-section {
    flex: 1;
  }

  .product-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .product-info {
    margin-bottom: 2rem;
  }

  .info-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
  }

  .info-row:last-child {
    border-bottom: none;
  }

  .info-label {
    width: 140px;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
  }

  .info-value {
    flex: 1;
    color: #1f2937;
  }

  .exam-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .exam-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }

  .detail-link {
    color: #6b7280;
    text-decoration: none;
    margin-left: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }

  .detail-link:hover {
    color: #3b82f6;
  }

  .pricing-options {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
  }

  .pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .pricing-row:last-child {
    border-bottom: none;
  }

  .option-name {
    font-weight: 600;
    color: #1f2937;
    flex: 1;
  }

  .pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1rem;
  }

  .current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
  }

  .original-price {
    font-size: 1.7rem;
    color: #ef4444;
    text-decoration: line-through;
  }

  .add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #17a43b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  }

  .add-to-cart-btn:hover {
    background: #285078;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  }

  .add-to-cart-btn:active {
    transform: translateY(0);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .product-container {
      flex-direction: column;
      padding: 1rem;
      gap: 1.5rem;
    }

    .product-image-section {
      align-items: center;
    }

    .product-title {
      font-size: 1.5rem;
      text-align: center;
    }

    .pricing-row {
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
      text-align: center;
    }

    .pricing {
      justify-content: center;
    }

    .info-row {
      flex-direction: column;
      gap: 0.25rem;
    }

    .info-label {
      width: auto;
      font-size: 0.875rem;
    }
  }


/* Pricing Options Section Styles */
.pricing-options {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: transform 0.2s ease;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  transform: translateX(4px);
}

.option-name {
  font-weight: 600;
  color: #1f2937;
  flex: 1;
}

.pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 1rem;
}

.discount-badge {
  background: #ef4444;
  color: white;
  padding: 0.25rem 1.0rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.current-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: #285078;
}

.original-price {
  font-size: 1.7rem;
  color: #ef4444;
  text-decoration: line-through;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #17a43b;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(14, 181, 130, 0.3);
}

.add-to-cart-btn:hover {
  background: #234a66;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 181, 130, 0.4);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-options {
    padding: 1rem;
  }

  .pricing-row {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: center;
  }

  .pricing {
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dbb82bb */.stats-container {
  max-width: 1150px;
  margin: 0 auto;
}

.stats-header {
  background-color: #234a66;
  color: white;
  padding: 20px;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.stats-header h2 {
  margin: 0;
  font-size: 24px;
  color: white;
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

.stat-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(40, 80, 120, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(40, 80, 120, 0.15);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #17a43b;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-description {
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-header h2 {
    font-size: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  
  .stat-card {
    padding: 24px 16px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-header {
    padding: 16px;
  }
  
  .stats-header h2 {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e0b90e8 */<style>
    .comparison-table-container {

      max-width: 1100px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }
    
    .comparison-table-container * {
      box-sizing: border-box;
    }
    
    .comparison-table-container .table-header {
      background: #234a66;
      color: white;
      padding: 20px;
      border-radius: 12px 12px 0 0;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      position: relative;
      overflow: hidden;
    }
    
    .comparison-table-container .table-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      animation: shimmer 3s infinite;
    }
    
    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }
    
    .comparison-table-container .table-subheader {
      background: #0eb582;
      color: white;
      padding: 5px 20px;
      display: grid;
      grid-template-columns: 1fr 120px 120px;
      gap: 20px;
      align-items: center;
      font-weight: 600;
      font-size: 16px;
    }
    
    .comparison-table-container .column-header {
      text-align: center;
      background: #234a66;
      padding: 8px 12px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      transition: all 0.3s ease;
    }
    
    .comparison-table-container .column-header:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-2px);
    }
    
    .comparison-table-container .table-body {
      background: white;
      border-radius: 0 0 12px 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .comparison-table-container .table-row {
      display: grid;
      grid-template-columns: 1fr 120px 120px;
      gap: 20px;
      padding: 20px;
      align-items: center;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }
    
    .comparison-table-container .table-row:nth-child(1) { animation-delay: 0.1s; }
    .comparison-table-container .table-row:nth-child(2) { animation-delay: 0.2s; }
    .comparison-table-container .table-row:nth-child(3) { animation-delay: 0.3s; }
    .comparison-table-container .table-row:nth-child(4) { animation-delay: 0.4s; }
    .comparison-table-container .table-row:nth-child(5) { animation-delay: 0.5s; }
    .comparison-table-container .table-row:nth-child(6) { animation-delay: 0.6s; }
    .comparison-table-container .table-row:nth-child(7) { animation-delay: 0.7s; }
    .comparison-table-container .table-row:nth-child(8) { animation-delay: 0.8s; }
    .comparison-table-container .table-row:nth-child(9) { animation-delay: 0.9s; }
    .comparison-table-container .table-row:nth-child(10) { animation-delay: 1.0s; }
    
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .comparison-table-container .table-row:hover {
      background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .comparison-table-container .table-row:last-child {
      border-bottom: none;
    }
    
    .comparison-table-container .feature-content {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .comparison-table-container .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    
    .comparison-table-container .feature-icon:hover {
      transform: scale(1.1) rotate(5deg);
    }
    
    .comparison-table-container .feature-text h3 {
      margin: 0 0 5px 0;
      font-size: 15px;
      font-weight: 300;
      color: #2d3748;
    }
    
    .comparison-table-container .feature-text p {
      margin: 0;
      font-size: 14px;
      color: #718096;
      line-height: 1.5;
    }
    
    .comparison-table-container .status-indicator {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .comparison-table-container .status-badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: bold;
      color: white;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .comparison-table-container .status-badge.available {
      background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
      animation: pulse 2s infinite;
    }
    
    .comparison-table-container .status-badge.unavailable {
      background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    }
    
    .comparison-table-container .status-badge:hover {
      transform: scale(1.2);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .comparison-table-container .status-badge::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease;
    }
    
    .comparison-table-container .status-badge:active::before {
      width: 100%;
      height: 100%;
    }
    
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7); }
      50% { box-shadow: 0 0 0 10px rgba(72, 187, 120, 0); }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .comparison-table-container {
        padding: 10px;
      }
      
      .comparison-table-container .table-header {
        font-size: 20px;
        padding: 15px;
      }
      
      .comparison-table-container .table-subheader {
        grid-template-columns: 1fr 80px 80px;
        gap: 10px;
        padding: 12px 15px;
        font-size: 14px;
      }
      
      .comparison-table-container .table-row {
        grid-template-columns: 1fr 80px 80px;
        gap: 10px;
        padding: 15px;
      }
      
      .comparison-table-container .feature-content {
        gap: 10px;
      }
      
      .comparison-table-container .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
      
      .comparison-table-container .feature-text h3 {
        font-size: 16px;
      }
      
      .comparison-table-container .feature-text p {
        font-size: 13px;
      }
      
      .comparison-table-container .status-badge {
        width: 35px;
        height: 35px;
        font-size: 16px;
      }
      
      .comparison-table-container .column-header {
        padding: 6px 8px;
        font-size: 12px;
      }
    }
    
    @media (max-width: 480px) {
      .comparison-table-container .table-subheader {
        grid-template-columns: 1fr 60px 60px;
        gap: 8px;
      }
      
      .comparison-table-container .table-row {
        grid-template-columns: 1fr 60px 60px;
        gap: 8px;
        padding: 12px;
      }
      
      .comparison-table-container .status-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
    }
  </style>/* End custom CSS */