.support-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .support-container {
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    /* font-family: "Nunito Sans", sans-serif; */
  }
  
  .support-header {
    display: flex;
    justify-content: flex-end;
  }
  
  .support-container .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #444;
  }
  
  .support-content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    text-transform: none;
  }
  
  .support-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
  }
  
  .support-benefits {
    margin-bottom: 20px;
  }
  
  .benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .benefit-icon {
    font-size: 1.5rem;
    margin-right: 10px;
  }
  
  .benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
  }
  
  .benefit-description {
    font-size: 0.9rem;
    color: #666;
    text-transform: none;
  }
  
  .support-instruction {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: none;
  }
  
  .email-input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .ok-btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: #4caf50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .ok-btn:hover {
    background: #45a049;
  }
  
  .support-footer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    text-transform: none;
  }
  
  .support-link {
    color: #007bff;
    text-decoration: none;
  }
  
  .support-link:hover {
    text-decoration: underline;
  }