    :root {
    --primary: #d94f4f; /* A modern, slightly muted red */
    --primary-dark: #b33e3e;
    --primary-writing:#bbbbbb;
    --secondary: #1e3953; /* A slightly softer dark blue-gray */
    --secondary-light: #848484;
    --excel-primary: #1D6F42; /* A richer green for Excel */
    --word-primary: #2B579A; /* Keeping the classic Word blue */
    --accent: #f4f4f4; /* A light gray for accents */
    --light: #ffffff; /* Pure white for a cleaner look */
    --dark: #333333; /* A softer black for text */
    --danger: #e53935;
    --gradient: linear-gradient(to right, #cccccc, #bbbbbb);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  }
    body {
      background: var(--accent);
      color: var(--dark);
      font-family: 'Roboto', Arial, sans-serif;
    }
    .sitemap-header {
      background: var(--accent);
      padding: 6rem 2rem 5rem;
      text-align: center;
      color: var(--light);
      position: relative;
      margin-bottom: 2.5rem;
      box-shadow: none;
      border-radius: 0;
    }
    .sitemap-header h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      color: var(--secondary);
    }
    .sitemap-header p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.95;
      line-height: 1.6;
      color: var(--secondary-light);
    }
    .sitemap-container {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      background: var(--light);
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(30,57,83,0.10);
      padding: 2.5rem 2rem 2rem 2rem;
      border: 1px solid #e3eaf2;
      max-width: 900px;
      margin: 0 auto 40px auto;
    }
    .sitemap-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.07);
      padding: 2.2rem 2rem 1.5rem 2rem;
      margin-bottom: 0;
      border: 1px solid #f2f2f2;
      transition: box-shadow 0.2s;
    }
    .sitemap-card:hover {
      box-shadow: 0 10px 32px rgba(30,57,83,0.13);
    }
    .sitemap-section h2 {
      color: var(--primary);
      font-size: 1.25em;
      margin-bottom: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 0.5em;
    }
    .sitemap-section h2::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 24px;
      border-radius: 4px;
      background: var(--primary);
      margin-right: 10px;
      opacity: 0.7;
    }
    ul.sitemap-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    ul.sitemap-list li {
      margin: 10px 0;
      font-size: 1.07em;
    }
    ul.sitemap-list a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 500;
      padding: 4px 8px;
      border-radius: 6px;
      transition: background 0.18s, color 0.18s, box-shadow 0.18s;
      box-shadow: 0 0 0 rgba(217,79,79,0);
    }
    ul.sitemap-list a:hover {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 2px 8px 0 rgba(217,79,79,0.10);
    }
    .coming-soon {
      color: var(--primary-dark);
      font-size: 0.97em;
      margin-left: 6px;
      background: #fbeaea;
      border-radius: 4px;
      padding: 2px 7px;
      font-weight: 400;
    }
    @media (max-width: 900px) {
      .sitemap-container {
        padding: 1.2rem 0.5rem;
      }
      .sitemap-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
      }
    }