/* ==========================================================================
   SECTION BASE STYLES
   Common section styles and section headers
   ========================================================================== */

  /* Section Base Styles */
  section {
    padding: 4rem 0;
  }

  @media (min-width: 768px) {
    section {
      padding: 6rem 0;
    }
  }

  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  @media (min-width: 768px) {
    .section-header {
      margin-bottom: 4rem;
    }
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,102,255,.3);
  }

  .section-title {
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
  }
