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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #5e3b76;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #7b4ca0;
  color: white;
  padding: 8px 13px;
}

.navbar h1 {
  font-size: 1.1rem;
}

.navbar .pi-logo {
  color: #ffcc00;
}

.navbar .back-arrow, .navbar .menu {
  font-size: 0.5rem;
  cursor: pointer;
}

.container {
  text-align: center;
  padding: 20px;
}

.logo img {
  width: 120px;
  margin-bottom: 25px;
}

h2 {
  color: #f4a500;
  font-size: 1.35rem;
  margin-bottom: 35px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1.5px solid #4b0082; /* Purple border matching the screenshot */
  border-radius: 10px; /* Rounded corners */
  padding: 5px; /* Optional padding inside the border for spacing */
  display: inline-block; /* Ensures the border wraps tightly around the icon */
  width: 65px; /* Adjust width based on your icon size */
  height: 70px; /* Adjust height based on your icon size */
  background-color: white; /* Matches the white background of the icons */
}

.grid-item img {
  margin-bottom: 10px;
  width: 100%; /* Ensures the image fills the icon container */
  height: 100%; /* Ensures the image fills the icon container */
  object-fit: contain; /* Prevents image distortion */
}

.grid-item p {
  font-size: 0.9rem;
  color: #5e3b76;
}

.explore-btn {
  background-color: #7b4ca0;
  color: white;
  font-size: 0.9rem;
  padding: 12px 70px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
}

.explore-btn:hover {
  background-color: #5e3b76;
}