.sitemap-section {
      margin-bottom: 50px;
    }

    .sitemap-section h2 {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a1a;
      border-bottom: 2px solid #F79320;
      padding-bottom: 10px;
      margin-bottom: 24px;
    }

    .sitemap-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 12px;
    }

    .sitemap-link {
      display: block;
      padding: 8px 14px;
      background: #f8f9fa;
      border-radius: 6px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid #eee;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .sitemap-link:hover {
      background: #fff4e5;
      border-color: #F79320;
      color: #F79320;
      text-decoration: none;
    }

    .sitemap-hero {
      background: #F79320;
      color: #1a1a1a;
      padding: 60px 0 40px;
      margin-bottom: 60px;
      text-align: center;
    }

    .sitemap-hero h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .sitemap-hero p {
      color: #1a1a1a;
      font-size: 16px;
      margin: 0;
    }

    .sitemap-badge {
      display: inline-block;
      background: #F79320;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      margin-left: 8px;
      vertical-align: middle;
    }

    @media (max-width: 576px) {
      .sitemap-grid {
        grid-template-columns: 1fr;
      }

      .sitemap-hero h1 {
        font-size: 26px;
      }
    }
