/* General styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 70px 0;  /* Bottom padding to avoid content hiding behind fixed footer */
  color: #333;
  background-color: #edf6f9;
}

a {
  text-decoration: none;
  color: #005f73;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Header styles */
header {
  background: linear-gradient(90deg, #005f73, #0a9396);
  color: #fff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

header h1 {
  float: left;
  margin: 0;
  font-size: 1.8rem;
}

header h1 a {
  color: #fff;
}

nav {
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  padding: 5px 10px;
}

nav ul li a.active,
nav ul li a:hover {
  background: #94d2bd;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
  color: #fff;
  height: 400px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for improved text readability */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ee9b00;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ca6702;
}

/* Content Sections */
.content {
  padding: 2rem 0;
  background: #fff;
  margin-bottom: 20px;
}

.content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #005f73;
}

.content p,
.content ul {
  font-size: 1rem;
  margin-bottom: 10px;
}

.content ul {
  list-style: disc inside;
}

.content li {
  margin-bottom: 5px;
}

/* Contact form */
form {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

form label {
  margin: 10px 0 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

form textarea {
  resize: vertical;
  height: 150px;
}

form button {
  margin-top: 15px;
  padding: 10px;
  background: #005f73;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #0a9396;
}

/* Footer styles */
footer {
  background: linear-gradient(90deg, #005f73, #0a9396);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
