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

body {
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #1d1d1d;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

/* NAV */
.nav {
  background: #0b3d91;
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.nav-btn {
  background: #ffcc33;
  color: black;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #0b3d91, #1a5fd0);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.header h1 {
  font-size: 28px;
}

/* SECTIONS */
.hero, .services, .seo-text, .areas, .contact {
  padding: 60px 20px;
  text-align: center;
}

/* CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* AREAS */
.areas {
  background: #e8f0ff;
}

/* CONTACT */
.contact {
  background: #0b3d91;
  color: white;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: #ffcc33;
  color: black;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 18px;
  font-size: 13px;
}
