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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  background-color: #F0F2F5;
  color: #4A4A4A;
  line-height: 1.6;
}

h1 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  color: #3A5B4C;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-weight: 600;
  color: #5A8F7B;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

h3 {
  font-weight: 600;
  color: #3A5B4C;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: #5A8F7B;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3A5B4C;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background-color: #F0F2F5;
  border-bottom: 1px solid #E0E2E5;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3A5B4C;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #5A8F7B;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
  padding-bottom: 2rem;
}

section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: linear-gradient(135deg, rgba(90, 143, 123, 0.1) 0%, rgba(200, 230, 201, 0.1) 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease-out;
}

.hero h1 {
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease-out 0.4s both;
}

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

.section-content.reversed {
  direction: rtl;
}

.section-content.reversed > * {
  direction: ltr;
}

.section-text {
  line-height: 1.8;
}

.section-text ul,
.section-text ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.section-text li {
  margin-bottom: 0.5rem;
}

.section-image {
  width: 100%;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(90, 143, 123, 0.15);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #5A8F7B;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(90, 143, 123, 0.2);
  transform: translateY(-4px);
}

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

.card h3 {
  color: #3A5B4C;
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  background-color: #5A8F7B;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #C8E6C9;
  color: #3A5B4C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 143, 123, 0.3);
}

.disclaimer-box {
  background-color: #C8E6C9;
  border-left: 4px solid #3A5B4C;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

footer {
  background-color: #3A5B4C;
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

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

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

.footer-section a {
  color: #C8E6C9;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 230, 201, 0.3);
  padding-top: 2rem;
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-disclaimer {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

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

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease-out;
}

.cookie-content {
  max-width: 1440px;
  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.5;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #5A8F7B;
  color: white;
}

.cookie-accept:hover {
  background-color: #C8E6C9;
  color: #3A5B4C;
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 2px solid #C8E6C9;
}

.cookie-reject:hover {
  background-color: rgba(200, 230, 201, 0.1);
}

.cookie-more {
  background-color: transparent;
  color: #C8E6C9;
  text-decoration: underline;
  padding: 0.5rem 0;
}

.cookie-more:hover {
  color: white;
}

form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #3A5B4C;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E0E2E5;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #5A8F7B;
  box-shadow: 0 0 0 3px rgba(90, 143, 123, 0.1);
}

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

.form-submit {
  background-color: #5A8F7B;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  font-size: 1rem;
}

.form-submit:hover {
  background-color: #3A5B4C;
  box-shadow: 0 4px 12px rgba(90, 143, 123, 0.3);
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #5A8F7B;
}

.faq-question {
  font-weight: 600;
  color: #3A5B4C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideUp 0.3s ease-out;
}

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

.thank-you-message h1 {
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  background-color: #5A8F7B;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  background-color: #3A5B4C;
  text-decoration: none;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

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

  nav {
    display: none;
  }

  .header-container {
    padding: 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  main {
    margin-top: 70px;
  }

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}
