:root {
      --primary: #1e40af;
      --bg: #f9fafb;
      --card-bg: #ffffff;
      --text: #111827;
      --muted: #6b7280;
      --radius: 12px;
      --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    .support_container {
      max-width: 600px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    h1 {
      margin-bottom: 2rem;
      font-size: 2rem;
      color: var(--primary);
    }

    .support_card {
        display: flex;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
    }

    .support_card-content {
  flex: 1;
  min-width: 0;
}

.support_card-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 150px;
  margin-left: 2rem;
}

    .support_card h2 {
      font-size: 2rem;
      margin-top: 0;
      color: var(--primary);
    }

    .support_card p {
      margin: 0.5rem 0;
    }

    .support_card a {
      color: var(--primary);
      text-decoration: none;
      font-weight: bold;
    }

    .support_card a:hover {
	  color: var(--primary);
      text-decoration: none;
      font-weight: bold;
      text-decoration: underline;
    }

    .support_muted {
      color: var(--muted);
      font-style: italic;
    }

    .support_address {
      margin: 0.5rem 0;
    }

    .support_logo {
       width: 200px;
  max-width: 200px;
  padding-top: 20px;
  height: auto;
  display: block;
    }

  @media (max-width: 600px) {
  .support_card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .support_card-image {
    margin: 1rem 0 0 0;
    justify-content: center;
    min-width: 0;
  }
  .support_logo {
    width: 120px;
    max-width: 120px;
  }
  .support_card-content {
    text-align: left;
    width: 100%;
  }
}
