/* ===========================
   GLOBAL
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

/* ===========================
   HEADER / NAV
=========================== */

.header {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
  padding: 10px 20px;
  width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 65px;      /* ← PERFECT SIZE */
  width: auto;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1rem;
}

.nav a:hover,
.nav a.active {
  color: #1f6feb;
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #f3f3f3;
}

/* ===========================
   SECTIONS
=========================== */

section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1f6feb;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* ===========================
   COVERAGE LIST
=========================== */

.coverage ul {
  list-style: none;
  columns: 2;
  column-gap: 40px;
  font-size: 1.1rem;
}

.coverage li {
  margin-bottom: 8px;
}

/* ===========================
   REQUEST FORM
=========================== */

.request-form {
  background: #ffffff;
  padding: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  max-width: 600px;
  margin: auto;
}

.request-form label {
  font-weight: bold;
}

.request-form input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.request-form button {
  background-color: #1f6feb;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.request-form button:hover {
  background-color: #155dc0;
}

/* ===========================
   FOOTER
=========================== */

.footer {
  margin-top: 40px;
  padding: 20px;
  background: #1f6feb;
  color: white;
  text-align: center;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .nav a {
    display: inline-block;
    margin: 10px;
  }

  .hero {
    height: 360px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .logo {
    height: 50px;
  }

  .coverage ul {
    columns: 1;
  }
}
