.sitemapdata {
  display: block;
  width: 100%;
  padding: 80px 0;
  background-color: #f9fafb;
}

.sitemapdata .wrapper {
  max-width: 1200px;
  margin: auto;
}

.sitemapdata .wrapper .headdata {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.sitemapdata .wrapper .headdata a {
  text-decoration: none;
  color: #0678b1;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sitemapdata .wrapper .headdata a:hover {
  text-decoration: underline;
  color: #004c7a;
}

.sitemapdata .wrapper .headdata span {
  color: #888;
  font-size: 16px;
}

.sitemapdata .wrapper .headdata p {
  font-weight: 500;
  font-size: 14px !important;
}

.sitemapdata .wrapper .bannerdata {
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
}

.sitemapdata .wrapper .bannerdata img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sitemapdata .wrapper .section {
  background: #fff;
  padding: 30px;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
}

.sitemapdata .wrapper .section:hover {
  transform: translateY(-5px);
}

.sitemapdata .wrapper .section h1 {
  font-size: 25px;
  color: #0678b1;
  font-weight: 700;
  margin-bottom: 20px;
}

.sitemapdata .wrapper .section h2 {
  font-size: 26px;
  color: #0678b1;
  font-weight: 700;
  margin-bottom: 20px;
}

.sitemapdata .wrapper .section .categoryBox {
  margin-top: 20px;
  background: #eef5f9;
  padding: 20px;
  border-radius: 5px;
}

.sitemapdata .wrapper .section .categoryBox h3 {
  font-size: 22px;
  color: #034e6f;
  font-weight: 600;
  margin-bottom: 10px;
}

.sitemapdata .wrapper .section .categoryBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemapdata .wrapper .section .categoryBox ul li {
  background: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  margin-bottom: 10px;
}

.sitemapdata .wrapper .section .categoryBox ul li a {
  font-size: 14px;
  color: #034e6f;
  text-decoration: none;
  font-weight: 500;
}

.sitemapdata .wrapper .section .categoryBox ul li:hover {
  background: #d0e8f2;
}

.sitemapdata .wrapper .section .stateBox {
  margin-top: 20px;
  background: #eef5f9;
  padding: 20px;
  border-radius: 8px;
}

.sitemapdata .wrapper .section .stateBox h3 {
  font-size: 22px;
  color: #034e6f;
  font-weight: 600;
  margin-bottom: 10px;
}

.sitemapdata .wrapper .section .stateBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemapdata .wrapper .section .stateBox ul li {
  background: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  margin-bottom: 10px;
}

.sitemapdata .wrapper .section .stateBox ul li a {
  font-size: 14px;
  color: #034e6f;
  text-decoration: none;
  font-weight: 500;
}

.sitemapdata .wrapper .section .stateBox ul li:hover {
  background: #d0e8f2;
}

/* Responsive */
@media (max-width: 1024px) {
  .sitemapdata {
    padding: 60px 0;
  }

  .wrapper {
    width: 95%;
  }

  .bannerdata img {
    height: 300px;
  }

  .section {
    padding: 25px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section ul li {
    font-size: 14px;
    padding: 8px 12px;
  }

  .stateBox h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .sitemapdata {
    padding: 50px 0;
  }

  .headdata {
    font-size: 13px;
  }

  .bannerdata img {
    height: 250px;
  }

  .categoryBox {
    padding: 20px 10px !important;
  }

  .categoryBox ul li {
    width: 100%;
    padding: 8px 5px !important;
  }

  .section {
    padding: 20px;
  }

  .stateBox ul {
    flex-direction: column;
    gap: 5px;
  }
}
