/* GLOBAL MOBILE FIXES */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  overflow-x: hidden;
}

/* CONTAINER FIX */
.container,
.wrapper,
.section,
.content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* MOBILE LAYOUT FIX */
@media (max-width: 768px) {

  /* Text scaling */
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 24px !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 20px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  p {
    font-size: 16px;
  }

  /* Padding */
  section,
  .section,
  .container {
    padding: 15px !important;
  }

  /* FLEX FIX */
  .row,
  .flex,
  .features,
  .columns {
    display: flex;
    flex-direction: column !important;
  }

  /* NAVIGATION */
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  /* HERO IMAGE FIX */
  .hero img {
    width: 100%;
    height: auto;
  }

  /* BUTTONS */
  a,
  button {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.icon-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:2rem;
}
.stats {
  display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem;
  text-align:center;
}
.contact-items {
  display:grid; grid-template-columns:repeat(1,1fr);
  gap:2rem; margin-top:2.5rem; text-align:left;
}