body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f2f2;
}

.banner {
  width: 100%;
  background-color: #3498db;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.banner-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
}

.banner-subtitle {
  font-size: 1.2em;
  margin-top: 5px;
  color: #bdc3c7;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.service-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-logo {
  height: 60px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 0.95em;
  color: #555;
}

