
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* Container styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: #f9fbfc;
  color: #333;
}

/* Section heading */
.container h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Individual service card */
.grid > div {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Headings with icon placeholders */
.grid h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  color: #0077b6;
}

.grid h3::before {
  content: '📌'; /* Placeholder icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

/* List styling */
.grid ul {
  padding-left: 1rem;
  margin: 0;
}

.grid li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  list-style-type: disc;
  color: #555;
}
/* Header container */
.company-name {
  text-align: center;
}

