@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@400;700&family=Merriweather:wght@400;700&family=Lora:wght@400;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #2c2c2c;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #444;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2196F3;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #4CAF50;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #2196F3;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4CAF50;
}

main {
  margin-top: 80px;
}

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

.hero {
  background: linear-gradient(135deg, #f5fff5 0%, #e8f5e9 100%);
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
}

.section {
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.section-alt {
  background: #f9fef8;
  padding: 4rem 0;
}

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

.two-column:nth-child(even) {
  direction: rtl;
}

.two-column:nth-child(even) > div {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.two-column img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2);
}

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

.card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(76, 175, 80, 0.15);
  border-color: #4CAF50;
}

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

.card h3 {
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card p {
  font-size: 1rem;
  color: #666;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

th {
  background: #4CAF50;
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:hover {
  background: #f9fef8;
}

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

.list-items li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  color: #555;
}

.list-items li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.3rem;
}

.disclaimer {
  background: #fff3e0;
  border-left: 4px solid #FF9800;
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #666;
}

.disclaimer h4 {
  color: #FF9800;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background: #4CAF50;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  margin-right: 1rem;
}

.cta-button:hover {
  background: #2196F3;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(33, 150, 243, 0.3);
}

.cta-button-secondary {
  background: #8BC34A;
}

.cta-button-secondary:hover {
  background: #FF9800;
}

footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  font-size: 0.95rem;
}

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

.footer-section h4 {
  color: #4CAF50;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #4CAF50;
}

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

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #f9fef8;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  background: #e8f5e9;
  border: 1px solid #4CAF50;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #2c2c2c;
}

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

.thank-you h1 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f9fef8;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #e8f5e9;
}

.faq-question.active {
  background: #4CAF50;
  color: white;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.5rem;
  border-top: 2px solid #e0e0e0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.modal-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  border: none;
  background: none;
}

.modal-close:hover {
  color: #333;
}

.cookie-choices {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-choices button {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-choices .btn-accept {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.cookie-choices .btn-accept:hover {
  background: #2196F3;
}

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

.cookie-choices .btn-reject:hover {
  background: #f0f0f0;
}

.cookie-choices .btn-learn-more {
  background: #fff;
  color: #4CAF50;
  border-color: #4CAF50;
}

.cookie-choices .btn-learn-more:hover {
  background: #f9fef8;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-content,
  .two-column {
    grid-template-columns: 1fr;
  }

  .two-column:nth-child(even) {
    direction: ltr;
  }

  .hero img {
    height: 300px;
  }

  .two-column img {
    height: 280px;
  }

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

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

  main {
    margin-top: 100px;
  }

  .cookie-choices {
    flex-direction: column;
  }

  .container {
    padding: 0 1rem;
  }

  p {
    font-size: 1rem;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

.message-box {
  padding: 1.5rem;
  background: #e3f2fd;
  border-left: 4px solid #2196F3;
  border-radius: 4px;
  margin: 2rem 0;
  color: #1a1a1a;
}

.message-box.info {
  background: #e8f5e9;
  border-color: #4CAF50;
}

.message-box.warning {
  background: #fff3e0;
  border-color: #FF9800;
}
