/* Global resets and typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Navigation bar */
nav {
  background: #004550;
  padding: 10px 20px;
  color: #fff;
}

/* Container inside the nav to hold the logo and links */
nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Logo image styling */
nav .logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Navigation links */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #80d9c6;
}

/* Hero section */
header#hero {
  background-image: url('hero-background.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

header#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

header#hero > div {
  position: relative;
  z-index: 1;
}

header#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header#hero p.tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

header#hero .btn {
  display: inline-block;
  background: #009879;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Sections */
section {
  padding: 50px 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004550;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

th, td {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #004550;
  color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Feature list bullets */
.features-list {
  list-style: disc;
  padding-left: 20px;
  margin-left: 20px;
}

.features-list li {
  margin-bottom: 10px;
}

/* Service area badges */
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.service-area-list span {
  background: #009879;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Forms */
.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

form .form-group {
  margin-bottom: 15px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background: #009879;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #007d63;
}

/* Footer */
footer {
  background: #004550;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: #80d9c6;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  header#hero {
    padding: 60px 20px;
  }
  header#hero h1 {
    font-size: 1.8rem;
  }
}