* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #ffffff;
}

.navbar {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a5040;
}

.navbar-brand:hover {
  color: #2d7a5f;
}

.nav-link {
  color: #2d2d2d;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1a5040;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 80, 64, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.8;
}

.content-section {
  padding: 5rem 0;
}

.content-section.bg-light {
  background-color: #f8f9fa;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a5040;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a5040;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header {
  padding: 8rem 0 4rem;
  background-color: #f8f9fa;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5040;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: #4a4a4a;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1a5040;
  font-style: normal;
}

.cta-section {
  background-color: #1a5040;
  color: #ffffff;
  padding: 5rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #2d7a5f;
  border-color: #2d7a5f;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a5040;
  border-color: #1a5040;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form .form-control {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: #1a5040;
  box-shadow: 0 0 0 0.2rem rgba(26, 80, 64, 0.25);
}

.contact-info h3 {
  color: #1a5040;
  margin-bottom: 1rem;
}

.thank-you-section {
  padding: 10rem 0;
  text-align: center;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5040;
  margin-bottom: 1.5rem;
}

.thank-you-section p {
  font-size: 1.2rem;
  color: #4a4a4a;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a5040;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a5040;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content p,
.policy-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.footer {
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #cccccc;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2d7a5f;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #999999;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0 2rem 0 0;
  font-size: 0.95rem;
  flex: 1;
}

.cookie-content a {
  color: #2d7a5f;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .content-section {
    padding: 3rem 0;
  }
  .content-section h2 {
    font-size: 1.6rem;
  }
  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .page-header {
    padding: 6rem 0 3rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content p {
    margin: 0 0 1rem 0;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .content-section h2 {
    font-size: 1.4rem;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
}
