<!-- ==========================
FILE: /assets/css/style.css
========================== -->

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #222;
  background: #f6f7f9;
}


h1, h2, h3 {
  margin-top: 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

nav {
  background: #020617;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;          /* ← critical */
  box-sizing: border-box;
}


nav a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  background: #1e293b;
}

@media (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

header {
  background: #0f172a;
  color: #fff;
  padding: 60px 0;
}

.cta {
  display: inline-block;
  background: #22c55e;
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}

section {
  padding: 60px 0;
  background: #fff;
}

section.alt {
  background: #f1f5f9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

footer {
  background: #020617;
  color: #fff;
  padding: 40px 0;
}

footer a { color: #22c55e; }

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 1000;
}

.whatsapp-chat:hover {
  background: #1ebe5d;
}

@media (max-width: 480px) {
  nav ul {
    justify-content: space-between;
  }

  nav a {
    padding: 12px 10px;
    font-size: 15px;
    white-space: nowrap;
  }
}

/* Force font across entire site */
html, body {
  font-family: Arial, Helvetica, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif !important;
}
