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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f7f8f5;
}

header {
  background: #064d2e;
  color: white;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #f5c542;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a:hover {
  color: #f5c542;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(rgba(6, 77, 46, 0.85), rgba(6, 77, 46, 0.85)),
              url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  padding: 60px 8%;
}

.hero-text {
  max-width: 750px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f5c542;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #f5c542;
  color: #064d2e;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

section {
  padding: 70px 8%;
}

section h2 {
  font-size: 34px;
  color: #064d2e;
  margin-bottom: 20px;
  border-left: 6px solid #f5c542;
  padding-left: 15px;
}

section p {
  font-size: 18px;
  max-width: 1000px;
}

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

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-top: 5px solid #f5c542;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: #064d2e;
  margin-bottom: 15px;
}

.contact-box {
  background: white;
  margin-top: 25px;
  padding: 25px;
  border-radius: 10px;
  border-left: 6px solid #064d2e;
  max-width: 600px;
}

footer {
  background: #064d2e;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 768px) {
  header {
    display: block;
    text-align: center;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }
}
/* NIC ATLANTIC LOGO SETTINGS */
.brand img {
  height: 65px;
  width: auto;
  display: block;
}

.site-header {
  background: #062b5f;
  color: white;
  padding: 12px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #d4af37;
}

@media (max-width: 768px) {
  .brand img {
    height: 45px;
    margin: 0 auto;
  }
}
