:root {
    --primary: #6777ef;
    --secondary: #f8f9fa;
    --dark: #343a40;
    --light: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }
  
  .bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6777ef 100%);
  }
  
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .text-primary {
    color: var(--primary) !important;
  }
  
  .feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin-right: 20px;
  }
  
  .app-screenshot {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }
  
  .app-screenshot:hover {
    transform: scale(1.05);
  }
  
  .warning-box {
    border-left: 5px solid var(--warning);
    background-color: rgba(255,193,7,0.1);
  }
  
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
  }
  
  .qr-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-block;
  }
  
  .section-title {
    position: relative;
    display: inline-block;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 25%;
  }
  
  @media (max-width: 768px) {
    .step-number {
      width: 40px;
      height: 40px;
      font-size: 18px;
      margin-right: 15px;
    }
    
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      font-size: 24px;
    }
  }

  .display-4 {
    font-size: 52px !important;
  }

  .custom-container {
    padding-left: 20px !important; /* Adjust as needed */
    padding-right: 20px !important;
  }
  
  @media (min-width: 992px) { /* Increase space for larger screens */
    .custom-container {
      padding-left: 150px !important;
      padding-right: 150px !important;
    }
  }