body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #333;
}

.container {
  display: flex;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  padding: 2rem;
}

.sidebar {
  width: 200px;
  background: linear-gradient(to bottom, #006847 33%, #FFFFFF 33%, #FFFFFF 66%, #CE1126 66%);
  color: #333;
  padding: 1rem;
  order: 2;
}

.sidebar h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #333;
  text-align: center;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}

.sidebar a:hover {
  background: #006847;
  color: white;
}

.hero {
  position: relative;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(0, 104, 71, 0.5);
  padding: 1rem;
  border-radius: 5px;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials {
  max-width: 800px;
  margin: 2rem auto;
}

.testimonial-card {
  background: #F5F5F5;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  border-left: 5px solid #CE1126;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
  color: #006847;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #CE1126;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  background-color: #CE1126;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #A0001C;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background-color: #006847;
  color: white;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    order: 1;
  }

  .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  main {
    padding: 1rem;
    order: 2;
  }

  .hero-image {
    height: 150px;
  }

  .hero-text {
    padding: 0.5rem;
  }
}