:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
  }
  
  .hero-section {
    background: linear-gradient(135deg, #003161 0%, #006A67 100%);
    color: white;
    padding: 80px 0;
  }

  .mid-CTA {
    background: linear-gradient(135deg, #003161 0%, #006A67 100%);
    color: white;
    padding: 80px 0;
  }

  .stat-box {
    text-align: center;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  .testimonial-card {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 15px 0;
    background: #f8f9fa;
    text-align: center
  }
  
  .price-card {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
  }
  
  .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .price-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    position: relative;
  }
  
  .badge-featured {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
  }
  
  .icon-square {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  
  .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
  }
  
  .trust-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
  }