@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --Primary-color: #f54748;
  --Primary-color-dark: #ff0000;
  --text-dark: #2e2e2e;
  --text-light: #595959;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

.section_container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section_subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--Primary-color);
  letter-spacing: 2px;
  text-align: center;
}

.section_header {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4rem;
}

.service_grid {
  display: grid;
  gap: 2rem 1rem;
}

.service_card img {
  max-width: 175px;
  margin-inline: auto;
  margin-bottom: 2rem;
  display: block;
  border-radius: 1rem;
}

.service_card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.service_card p {
  max-width: 275px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
  line-height: 1.75rem;
}

/* Responsive Design */
@media (min-width: 540px) {
  .service_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .service_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
