* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --leaf-green: #4CAF50;
  --earth-brown: #8B5E3C;
  --sky-blue: #87CEEB;
  --soft-cream: #FFF8E7;
  --dark-green: #2E7D32;
  --light-green: #81C784;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--earth-brown);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--leaf-green);
  font-family: 'Playfair Display', serif;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--leaf-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--leaf-green);
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1s ease-in;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--leaf-green);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

section {
  padding: 6rem 0;
  margin: 2rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: var(--soft-cream);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  fill: var(--leaf-green);
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: #555;
  line-height: 1.8;
}

.bg-cream {
  background-color: var(--soft-cream);
  margin: 3rem 0;
}

.bg-green {
  background-color: var(--light-green);
  color: #fff;
  margin: 3rem 0;
}

.bg-green h2,
.bg-green h3 {
  color: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.content-text h2 {
  margin-bottom: 1.5rem;
}

.content-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #555;
}

.content-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin: 2rem 0;
  width: 100%;
}

.testimonial {
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 4px solid var(--leaf-green);
  width: 100%;
  box-sizing: border-box;
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--earth-brown);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  fill: var(--leaf-green);
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-text p {
  color: #555;
  line-height: 1.6;
}

.contact-form {
  background-color: var(--soft-cream);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--earth-brown);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--leaf-green);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 4rem 0 1rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--leaf-green);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #bbb;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--leaf-green);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.privacy-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.privacy-links a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.privacy-links a:hover {
  color: var(--leaf-green);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.privacy-popup p {
  flex: 1;
  min-width: 250px;
}

.privacy-popup-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept {
  background-color: var(--leaf-green);
}

.btn-decline {
  background-color: #666;
}

.success-content {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  fill: var(--leaf-green);
}

.success-content h1 {
  color: var(--leaf-green);
  margin-bottom: 1rem;
}

.success-content p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

.policy-content h1 {
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

.policy-content ul {
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: #555;
  line-height: 1.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0.5rem 0;
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .privacy-popup-content {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-popup-buttons {
    justify-content: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .bg-cream,
  .bg-green {
    margin: 2rem 0;
  }

  .section-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 3.5rem 0;
    margin: 1.5rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .cards {
    gap: 2rem;
  }

  .gallery-grid {
    gap: 1.5rem;
  }

  .testimonials {
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.25rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    gap: 1rem;
  }

  .testimonial {
    padding: 1rem;
  }

  .testimonial p {
    font-size: 0.95rem;
  }
}

