/* Section Styles */
    section {
      position: relative;
      padding: 150px 5%;
      overflow: hidden;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-label::before,
    .section-label::after {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--primary);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 20px;
    }

    .section-description {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.6);
      max-width: 600px;
      margin: 0 auto;
    }
