/* General Reset */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f7f6;
  color: #333;
}

/* Header */
header {
  background-color: #00695c;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header .logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .logo {
  height: 60px;
  width: auto;
}

header h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 10px 0 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #a7ffeb;
}

/* Sections */
.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

h2 {
  color: #00695c;
  border-bottom: 2px solid #00695c;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* Services list */
#services ul {
  padding-left: 20px;
}

#services li {
  margin-bottom: 12px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #00695c;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #004d40;
}

/* Footer */
footer {
  background-color: #00695c;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 0.95rem;
}