


/* Subscription Form Specific Styles */
.subscription-card {
    max-width: 600px;
  }
  
  .single-button {
    justify-content: center;
  }
  
  #subscribe-button {
    background-color: #FF6600;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    margin-top: 1rem;
  }
  
  #subscribe-button:hover {
    background-color: var(--primary-hover);
  }
  
  .subscription-card .form-header {
    margin-bottom: 1.5rem;
  }
  
  .subscription-card .form-header h1 {
    color: #FF6600;
  }
  
  /* For better mobile experience */
  @media (max-width: 768px) {
    .subscription-card {
      padding: 1.5rem;
    }
  }