.widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, sans-serif;
}

.widget-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.widget-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.widget-card.featured {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-color: #d0e1fd;
}

.widget-icon {
  font-size: 20px;
  margin-bottom: 16px;
}

.widget-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.widget-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .widget-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}


............
/* Change primary link color */
.menu-desktop-main, .menu-button a {
    color: #fff !important;
}