.essential-services-widget {
  text-align: center;
  padding: 40px 20px;
  font-family: sans-serif;
}
.essential-services-widget h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e2a78;
}
.essential-services-widget p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}
.service-card img {
  max-width: 100px;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 20px;
  color: #1e2a78;
  margin-bottom: 10px;
}
.service-card ul {
  text-align: left;
  padding-left: 20px;
}
.service-card ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 40px solid red;
  border-left: 40px solid transparent;
}
