:root {
  --primary-green: #4a8b5c;
  --primary-green-dark: #3a7049;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-color: #e0e0e0;
}

* {
  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: #ffffff;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-green) !important;
}

.navbar {
  padding: 1rem 0;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.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(74, 139, 92, 0.85), rgba(58, 112, 73, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.hero-content .lead {
  font-size: 1.3rem;
  font-weight: 300;
}

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

.content-section h2 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.content-section h3 {
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-section ul {
  margin-bottom: 1.5rem;
}

.content-image-wrapper {
  margin: 2rem 0;
}

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

.info-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.info-box {
  background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.info-box h2,
.info-box h3 {
  color: var(--primary-green-dark);
  margin-top: 0;
}

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

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

.page-header .lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

.cta-section {
  background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

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

.btn-primary-custom:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 139, 92, 0.3);
  color: white;
  text-decoration: none;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 139, 92, 0.15);
}

.contact-info {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--primary-green);
}

.footer .small {
  line-height: 1.8;
}

.disclaimer-text {
  color: #90a4ae;
  font-style: italic;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.97);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-consent p {
  margin: 0;
}

.cookie-consent .btn {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cookie-consent .btn:hover {
  background: var(--primary-green-dark);
}

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

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

  .hero-image-wrapper {
    height: 350px;
  }

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

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

  .cookie-consent .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

.alert {
  border-radius: 8px;
  border: none;
}

.alert-info {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
  border-left: 4px solid #1976d2;
}
