:root {
  --primary: #7FB06A;
  --accent1: #F9A03F;
  --accent2: #E3DCC2;
  --accent3: #547B9A;
  --dark: #1a1a1a;
  --light: #f9f9f9;
  --border: #e0e0e0;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  color: var(--dark);
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-top: 1.5rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar {
  padding: 1rem 0;
  background-color: white;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--accent1);
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

body {
  padding-top: 80px;
}

.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(127, 176, 106, 0.8) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  color: var(--accent2);
  font-weight: 400;
}

.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child {
  border-bottom: none;
}

.container-fluid-custom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card-item {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.card-item h3 {
  color: var(--primary);
  margin-top: 0;
}

.card-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.two-column-layout img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.method-card {
  background: linear-gradient(135deg, var(--light) 0%, #fafafa 100%);
  padding: 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--primary);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-card h4 {
  color: var(--primary);
  margin-top: 0;
}

.info-list {
  list-style: none;
  margin: 2rem 0;
}

.info-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.8;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary);
  margin-top: 0;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 0.5rem 0;
}

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

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: white;
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: #6a9055;
}

.cookie-btn-reject {
  background-color: #666;
  color: white;
}

.cookie-btn-reject:hover {
  background-color: #555;
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-btn-policy:hover {
  background-color: var(--primary);
  color: white;
}

.disclaimer-box {
  background-color: var(--accent2);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--primary);
  margin-top: 0;
}

.faq-item {
  background-color: var(--light);
  margin: 1.5rem 0;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
  color: var(--dark);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #efefef;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: #555;
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    height: 400px;
  }

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

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

  .two-column-layout {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  body {
    padding-top: 60px;
  }
}
