:root {
  --primary-green: #2d7a4f;
  --primary-green-dark: #1f5436;
  --primary-green-light: #3d9a63;
  --secondary-gray: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.main-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.hero-image-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.85) 0%, rgba(31, 84, 54, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero {
  background-color: var(--white);
  color: var(--primary-green);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-green-dark);
  text-decoration: none;
}

.content-sections {
  padding: 2rem 0 4rem;
}

.content-block {
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--white) 100%);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
  color: var(--primary-green-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.with-images {
  background: var(--white);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  color: var(--white);
  margin-top: 3rem;
}

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

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

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border-color: var(--primary-green);
  color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

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

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

.page-header .lead {
  font-size: 1.3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

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

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  color: var(--primary-green-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-content p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-details {
  background: var(--secondary-gray);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.product-details h4 {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-disclaimer {
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #ff9800;
  margin-top: 2rem;
}

.info-disclaimer p {
  margin: 0;
  color: #664d03;
  font-size: 1rem;
  line-height: 1.7;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  color: var(--primary-green-dark);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.values-section h2 {
  color: var(--primary-green-dark);
  font-size: 2.5rem;
  font-weight: 700;
}

.value-card {
  background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.contact-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
  text-align: center;
  margin-top: 3rem;
}

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

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

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

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

.contact-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-green-dark);
  text-decoration: underline;
}

.office-hours {
  background: var(--secondary-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.office-hours h3 {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.25);
}

.form-check-label {
  font-size: 0.95rem;
}

.form-check-label a {
  color: var(--primary-green);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-content {
  background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--white) 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.thank-you-content .lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.thank-you-actions {
  margin-top: 2rem;
}

.policy-page {
  padding: 3rem 0;
}

.policy-page h1 {
  color: var(--primary-green-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.policy-page .text-muted {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.policy-section h3 {
  color: var(--primary-green-light);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-section p,
.policy-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 2rem;
}

.policy-section a {
  color: var(--primary-green);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

.highlight-section {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-green);
}

.highlight-section p {
  margin-bottom: 0.5rem;
}

.table {
  margin-top: 1rem;
}

.table th {
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
}

.main-footer {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, #1a3d28 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.main-footer h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.main-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner a:hover {
  opacity: 0.8;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .content-block h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .hero-image-container {
    height: 400px;
  }

  .hero-content {
    padding: 1rem;
  }

  .content-block {
    padding: 2rem 1rem;
  }

  .thank-you-content {
    padding: 2rem 1.5rem;
  }

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}
