/* ==============================
   Support Pages Styles
   ============================== */

   .support-hero {
    background: #0b3a6f;
    color: #fff;
    padding: 40px 16px;
    text-align: center;
  }
  .support-hero .container {
    max-width: 960px;
    margin: 0 auto;
  }
  .support-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
  }
  .support-hero .subtitle {
    opacity: 0.9;
    font-size: 16px;
  }
  
  .support-grid {
    max-width: 960px;
    margin: 32px auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 20px;
  }
  
  .support-grid .card {
    display: block;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: #222;
    transition: box-shadow .2s, transform .2s;
  }
  .support-grid .card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }
  .support-grid .card h2 {
    margin: 0 0 8px;
    font-size: 18px;
  }
  .support-grid .card p {
    margin: 0;
    color: #555;
  }
  
  /* Generic container for support subpages */
  .support-page {
    max-width: 900px;
    margin: 32px auto;
    padding: 0 16px;
    line-height: 1.6;
  }
  .support-page h1 {
    margin-top: 0;
    font-size: 28px;
    font-weight: 700;
  }
  .support-page p {
    font-size: 16px;
    color: #333;
  }

  /* Dark theme for support pages */
  .support-page,
  .support-page p {
    color: #f2f6fa;   /* متن روشن */
    font-size: 15px;
    line-height: 1.6;
  }

  .support-page a {
    color: #4da6ff;   /* لینک آبی روشن */
    text-decoration: underline;
  }
  .support-page a:hover {
    color: #80c1ff;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #0074d9;
    color: #fff;
    transition: background .2s;
  }
  .btn:hover {
    background: #005fa3;
  }
  
  /* Responsive tweaks */
  @media (max-width: 600px) {
    .support-hero {
      padding: 24px 12px;
    }
    .support-hero h1 {
      font-size: 24px;
    }
  }
  