@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary-color: #4CAF50;
  --accent-light: #8BC34A;
  --accent-warm: #FFC107;
  --accent-blue: #2196F3;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-light);
}

body {
  padding-top: 60px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.section {
  padding: 100px 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.section-hero {
  padding: 150px 2rem 100px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(139, 195, 74, 0.05) 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-alternate {
  background-color: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-grid.reversed {
  direction: rtl;
}

.content-grid.reversed > * {
  direction: ltr;
}

.grid-text h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.grid-text p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.grid-image {
  width: 100%;
  height: 350px;
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.15);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

.cta-button:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 60px 2rem 30px;
  margin-top: 100px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--bg-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-info p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-info strong {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-disclaimer {
  background-color: rgba(76, 175, 80, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 4px;
}

.footer-disclaimer p {
  color: var(--text-dark);
  margin: 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-consent-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.cookie-btn-accept:hover {
  background-color: var(--accent-light);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
  border-color: var(--text-dark);
}

.cookie-btn-more {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-btn-more:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.faq-item h3 {
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.faq-item h3:hover {
  color: var(--accent-light);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.8;
}

.disclaimer-box {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--accent-warm);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box p {
  color: var(--text-dark);
  margin: 0;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
  background-color: var(--bg-light);
}

.highlight-box {
  background-color: rgba(76, 175, 80, 0.05);
  border: 1px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.gap-4 {
  gap: 2rem;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 1rem;
  }

  .section-hero {
    padding: 80px 1rem 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    height: 300px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-consent-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
