@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght:600&family=Lora:ital@0;1&display=swap');

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

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

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

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #4CAF50;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

body {
  background-color: #fafafa;
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 1rem 0;
}

header .navbar {
  padding: 0 2rem;
}

header .navbar-brand img {
  height: 35px;
  width: auto;
}

header .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #555 !important;
  transition: color 0.3s ease;
  margin-left: 2rem;
}

header .nav-link:hover {
  color: #4CAF50 !important;
}

header .nav-link.active {
  color: #4CAF50 !important;
}

.hero {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  color: white;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="rgba(255,255,255,0.05)" width="1200" height="600"/><circle cx="10%" cy="50%" r="200" fill="rgba(255,255,255,0.03)"/><circle cx="90%" cy="50%" r="200" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-image {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

section {
  padding: 5rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-two-col.reverse {
  direction: rtl;
}

.section-two-col.reverse > * {
  direction: ltr;
}

.section-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

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

.section-content ul, .section-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.section-content li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.section-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.benefit-card h4 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

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

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #2196F3;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #1976D2;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.disclaimer-section {
  background: #f0f7f4;
  border-left: 4px solid #4CAF50;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.disclaimer-section h4 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.disclaimer-section p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .footer-section h5 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

footer .footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  line-height: 1.8;
}

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

footer .footer-section p {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

footer .footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1.5rem;
  text-align: center;
  color: #95a5a6;
  font-size: 0.85rem;
}

.copyright-message {
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
}

.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: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  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 8px rgba(76, 175, 80, 0.2);
}

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

.form-button {
  background-color: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-button:hover {
  background-color: #45a049;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.form-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #856404;
  line-height: 1.6;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.thank-you-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
}

.thank-you-link {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thank-you-link:hover {
  background-color: #45a049;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background-color: #45a049;
}

.cookie-btn-decline {
  background-color: #9E9E9E;
  color: white;
}

.cookie-btn-decline:hover {
  background-color: #757575;
}

.cookie-btn-learn {
  background-color: #2196F3;
  color: white;
}

.cookie-btn-learn:hover {
  background-color: #1976D2;
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  header .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: space-between;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  section {
    padding: 3rem 1.5rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

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

  .section-container {
    padding: 0;
  }

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