/* RESET BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f7f7f7;
}

/* HEADER & MENU */
header {
  background: #0b1c2d;
  color: #fff;
  padding: 15px 20px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

nav ul li {
  position: relative;
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* DROPDOWN */
nav ul li ul.dropdown {
  display: none;
  position: absolute;
  background: #0b1c2d;
  top: 35px;
  left: 0;
  padding: 10px;
  min-width: 220px;
}

nav ul li:hover ul.dropdown {
  display: block;
}

nav ul li ul.dropdown li {
  margin: 10px 0;
}

/* HERO */
.hero {
  background: #1e3a5f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.button {
  background: #ff9800;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* SECTIONS */
section {
  padding: 40px 20px;
  background: #fff;
  margin-bottom: 10px;
}

section h2 {
  margin-bottom: 15px;
  font-size: 26px;
}

section h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

section p {
  margin-bottom: 15px;
}

/* SERVICES */
.services-home,
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-box,
.service {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
}

.service-box a {
  color: #1e3a5f;
  font-weight: bold;
  text-decoration: none;
}

/* CONTACT */
.contact-details p {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #0b1c2d;
  color: #fff;
  text-align: center;
}

.cta .button {
  background: #ff9800;
  color: #000;
}

/* FOOTER */
footer {
  background: #0b1c2d;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* MOBILE MENU FIX */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  nav ul li ul.dropdown {
    position: static;
    padding-left: 15px;
  }
}
