body {
  padding-top: 110px;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Fredoka One', cursive, sans-serif;
}

/* Add this padding/margin to avoid content under nav */
main.main-box {
  padding-top: 90px; /* Adjust to your nav bar height */
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  max-width: 1200px;
  width: 95%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  margin: 40px auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-section h1 {
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: 700;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: start;
  width: 100%;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  text-align: center;
  width: 220px;
  height: 208px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.category-title {
  font-size: 1.15rem;
  margin-top: 12px;
  color: #000;
  font-weight: 700;
}

.category-desc {
  font-size: 0.9rem;
  color: #444;
  margin: 8px 12px 0;
}
