* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
/* Header styles */
header {
  background-color: #242b35;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0px;
  z-index: 3;
}

.logo img {
  height: 60px; /* Increase the logo height */
}

.menu-toggle {
  background: none;
  padding-right: 10px;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* Hide the menu toggle button on larger screens */
}

/* Drawer menu styles */
.drawer-menu {
  display: none; /* Hide the drawer menu on larger screens */
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #242b35;
  color: #fff;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding-top: 60px; /* Adjust based on header height */
}

.drawer-menu ul {
  list-style-type: none;
}

.drawer-menu ul li {
  border-bottom: 1px solid #444;
}

.drawer-menu ul li a {
  position: relative;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  display: block;
}

.drawer-menu ul li a:hover {
  background-color: #191e25;
  border-radius: 5px;
}
.active {
  background-color: #191e25;
  border-radius: 5px;
}

/* Close button for the drawer menu */
.close-drawer {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* Open the drawer menu */
.drawer-menu.open {
  left: 0;
  z-index: 1;
}

/* Main content styles */
main {
  padding: 0px !important;
  margin-left: 0;
  transition: margin-left 0.3s ease;
}

/* Adjust main content when drawer is open */
main.drawer-open {
  margin-left: 250px;
}

/* Media query for responsive design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show the menu toggle button on smaller screens */
  }

  .drawer-menu {
    display: block; /* Show the drawer menu on smaller screens */
    width: 100%;
    left: -100%;
  }

  .drawer-menu.open {
    left: 0;
  }

  main.drawer-open {
    margin-left: 0;
  }
}

/* Menu bar styles for larger screens */
@media (min-width: 769px) {
  .drawer-menu {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    color: inherit;
    overflow: visible;
    padding-top: 0;
    margin-left: auto; /* Align the menu to the right */
  }

  .drawer-menu ul {
    display: flex;
    flex-direction: row;
  }

  .drawer-menu ul li {
    padding: 0;
    border: none;
  }

  .drawer-menu ul li a {
    padding: 1rem;
    color: #fff;
  }

  .drawer-menu ul li a:hover {
    background-color: #191e25;
  }

  .close-drawer {
    display: none; /* Hide the close button on larger screens */
  }
}

main {
  padding: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #333;
}

.content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.image img {
  max-width: 100%;
  border-radius: 8px;
}

.text {
  flex: 1;
  min-width: 300px;
}

.text p {
  margin-bottom: 1rem;
}

/* Footer Section CSS Code */
footer {
  width: 100%;
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-about h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: black;
}

.footer-about p,
.footer-links ul,
.footer-social ul {
  margin: 0;
  padding: 0;
  color: black;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
}
.footer-social ul {
  list-style: none;
}

.footer-links ul li,
.footer-social ul li {
  margin-left: 10px;
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: black;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-social ul li a {
  color: black;
  font-size: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.footer-social ul li a:hover {
  color: silver;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  background-color: #242b35;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    margin: 10px 0;
  }
}
.wallet-point {
  background-color: white;
  color: black;
  padding: 0px 4px;
  border-radius: 50px;
  position: absolute;
  top: 0px;
}
.wallet-item{
    margin-right: 12px;
  }