/* Global Style Variables */
:root {
  --green: #2f4f3e;
  --beige: #f2e8d5;
  --light-green: #3d5f4a;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--beige);
  font-family: Arial, sans-serif;
  text-align: center;
}

header {
  padding: 25px 15px;
  background: var(--light-green);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 180px;
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: var(--beige);
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 40px 20px;
}
.hero h2 {
  font-size: 2rem;
}
.hero .phone {
  font-size: 1.5rem;
  margin-top: 15px;
  font-weight: bold;
}

/* Content Sections */
.content {
  padding: 25px;
  text-align: left;
  max-width: 800px;
  margin: auto;
}

.content h2 {
  color: var(--beige);
  border-bottom: 1px solid var(--beige);
  padding-bottom: 5px;
}

ul {
  padding-left: 20px;
}

/* Testimonials */
.testimonial {
  background: var(--light-green);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Contact Page */
.contact-box {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  border: none;
  background: var(--beige);
  color: var(--green);
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  opacity: 0.8;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  background: var(--light-green);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  nav a {
    display: inline-block;
    margin: 5px;
  }

  .logo {
    width: 140px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .content {
    padding: 15px;
  }
}
