/* General Styling */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.8;
}
h1, h2 {
  color: rgba(16, 112, 149, 1); /* Set the color for h1 and h2 */
}


h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header {
  background: rgba(28, 131, 106, 1);
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.nav {
  margin-top: 10px;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero-content, .about, .services, .staff, .contact {
  padding: 2rem;
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  background-color: rgba(28, 131, 106, 1);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(20, 93, 75, 1);
}

/* Services Section Styling */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 20px;
}

.service {
  flex: 1;
  max-width: 300px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.service h3 {
  margin-bottom: 10px;
}

.service p {
  font-size: 14px;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
  text-align: left;
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: rgba(28, 131, 106, 1);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-button:hover {
  background-color: rgba(20, 93, 75, 1);
}

/* Footer */
footer {
  background: rgba(28, 131, 106, 1);
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
/* Services Section Styling */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 20px;
}

.service {
  flex: 1;
  max-width: 300px;
  padding: 20px;
  background: rgba(28, 131, 106, 0.1); /* Light green background */
  border: 2px solid rgba(28, 131, 106, 1); /* Green border */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.2s ease-in-out;
}

.service:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.service h3 {
  color: rgba(28, 131, 106, 1); /* Green heading color */
  margin-bottom: 10px;
}

.service p {
  font-size: 14px;
  color: #333;
}
