   /* SECTION TOP SPACING */
    .my-sitemap-container {
      margin-top: 50px !important;
   
    }

    /* MAIN HEADINGS */
    .my-sitemap-main-heading {
      font-weight: 700;
      color: #0e6e40;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      transition: 0.3s ease;
    }

    .my-sitemap-main-heading:hover {
      color: #ffad05;
    }

    /* SUB HEADINGS */
    .my-sitemap-subtitle {
      font-weight: 600;
      color: #0e6e40;
      margin-bottom: 15px;
      transition: 0.3s ease;
    }

    .my-sitemap-subtitle:hover {
      color: #ffad05;
    }

    /* TOP NAV LINKS */
    .my-sitemap-top-links li a {
      background-color: #e6f4ee;
      padding: 10px 24px;
      border-radius: 25px;
      border: 2px solid #0e6e40;
      color: #0e6e40;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s ease;
      margin: 8px;
      display: inline-block;
    }

    .my-sitemap-top-links li a:hover {
      background-color: #ffad05;
      color: white;
      border-color: #ffad05;
      transform: translateY(-3px);
    }

    /* ALL BOX LINKS */
    .my-sitemap-link {
      display: block;
      background-color: #f2f9f6;
      padding: 12px;
      text-align: center;
      border-radius: 12px;
      color: #0e6e40;
      font-weight: 600;
      border: 2px solid #0e6e40;
      text-decoration: none;
      transition: 0.3s ease;
      margin-top: 8px;
    }

    .my-sitemap-link:hover {
      background-color: #ffad05;
      color: #fff;
      border-color: #ffad05;
      transform: translateY(-3px);
      box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    }

    /* RESPONSIVE FIXES */
    @media (max-width: 576px) {
      .my-sitemap-top-links li a {
        padding: 8px 16px;
        font-size: 14px;
      }
      .my-sitemap-main-heading {
        font-size: 22px;
      }
      .my-sitemap-subtitle {
        font-size: 18px;
      }
    }