* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif,Arial, Helvetica;
  background-color: white;
  color: #575757;
  font-size: 18px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #6a1b9a;
  border-bottom: 1px solid #ddd;
  color: white;
}
.logo img {
  height: 50px; /* adjust as needed */
  width: auto; /* keeps the aspect ratio */
}

.menu-icon {
  font-size: 28px;
  cursor: pointer;
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: white;
  color: black;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 1001;
}

.sidebar.open {
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.4); */
  display: none;
  z-index: 1000;
}

.overlay.show {
  display: block;
}

.container {
  padding: 40px;
  max-width: 960px;
  margin: auto;
  background: white;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.container h1 {
  font-family: Georgia, serif;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 30px;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #6a1b9a;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  transition: background 0.3s ease;
}
.cta:hover {
  background: #4a148c;
}

/*footer section*/

.site-footer {
  background-color: white;
  padding: 40px 20px;
  padding-bottom: 0;
  border-top: 1px solid #ccc;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  /* flex: 1 1 300px; */
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #2d4233;
}

.contact-item {
  margin: 8px 0;
  color: #333;
}

.contact-item span {
  color: #555;
}

.footer-right {
  /* flex: 1 1 300px; */
  margin-bottom: 20px;

}

.footer-right h3 {
  font-size: 18px;
  /* margin-bottom: 10px; */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}
/* Active link styling for both header and footer */
.header-links a,
.footer-links a {
  text-decoration: none;
  color: #444;
  padding: 5px;
}

.header-links a.active,
.footer-links a.active {
  color: #4a148c;
  font-weight: 500;
}
.header-links a:hover,
.footer-links a:hover {
  color: #4a148c;
  /* font-weight: 500; */
  transition: color 0.3s ease;
}


.page-two-lists{
  padding:20px 30px;
  li{
    margin-bottom:10px;
  }
}