:root {
  --primary-green: #5d8b6f;
  --primary-green-dark: #4a7259;
  --light-bg: #f8faf9;
  --white: #ffffff;
  --text-dark: #2c3e3b;
  --text-gray: #6b7c79;
  --border-light: #e0e8e5;
  --accent-light: #a8c9b8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.navbar {
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-green);
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 139, 111, 0.8) 0%, rgba(74, 114, 89, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

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

.content-section.bg-light {
  background-color: var(--light-bg);
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.image-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.image-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.image-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--white);
  color: var(--primary-green);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  color: var(--primary-green);
  text-decoration: none;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: var(--white);
}

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

.page-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.about-content,
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2,
.policy-content h2 {
  color: var(--primary-green);
  margin-top: 2rem;
}

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

.about-content li,
.policy-content li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-gray);
  margin-bottom: 0;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: none;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--primary-green-dark);
}

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

.thank-you-content h1 {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.btn-home {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.875rem 2rem;
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-home:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

.disclaimer-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.highlight-text {
  color: var(--primary-green);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--accent-light);
  text-decoration: underline;
}

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

.btn-accept,
.btn-decline {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-accept:hover {
  background-color: var(--primary-green-dark);
}

.btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.disclaimer-text {
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
