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

:root {
  --primary-bg: #F5F5DC;
  --text-primary: #708090;
  --accent-1: #8FBC8F;
  --accent-2: #D8BFD8;
  --dark-text: #2C3E50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

a {
  color: var(--accent-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-bg);
  border-bottom: 1px solid rgba(112, 128, 144, 0.2);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent-1);
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--accent-1);
  background-color: rgba(143, 188, 143, 0.1);
  text-decoration: none;
}

main {
  margin-top: 80px;
  padding: 0;
}

section {
  padding: 5rem 2rem;
  margin: 0;
}

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

.hero {
  background: linear-gradient(135deg, rgba(245, 245, 220, 1) 0%, rgba(143, 188, 143, 0.05) 100%);
  padding: 6rem 2rem;
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-primary);
}

.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.two-column-reverse > div:first-child {
  order: 2;
}

.two-column-reverse > img {
  order: 1;
}

.column-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2rem 0;
}

.card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(143, 188, 143, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-1);
}

.card h3 {
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent-1);
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--accent-2);
  color: #FFFFFF;
  text-decoration: none;
  transform: scale(1.05);
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-1);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--accent-1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-secondary:hover {
  background-color: var(--accent-1);
  color: #FFFFFF;
  text-decoration: none;
}

.disclaimer {
  background-color: rgba(216, 191, 216, 0.15);
  padding: 2rem;
  border-left: 4px solid var(--accent-2);
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.faq-item {
  background-color: #FFFFFF;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent-1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  color: var(--accent-1);
  margin-bottom: 0.8rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active p {
  display: block;
}

.faq-item p {
  display: none;
  color: var(--text-primary);
  line-height: 1.7;
}

.faq-toggle {
  font-size: 1.2rem;
  font-weight: bold;
}

footer {
  background-color: var(--dark-text);
  color: #FFFFFF;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.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.7);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-policies a {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
}

.footer-policies a:hover {
  color: var(--accent-1);
}

.disclaimer-footer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 1rem;
}

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

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

.modal-content {
  background-color: var(--primary-bg);
  padding: 2.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-primary);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--accent-2);
}

.modal h2 {
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

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

.modal li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(112, 128, 144, 0.3);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.1);
}

.form-disclaimer {
  background-color: rgba(143, 188, 143, 0.05);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  border-top: 2px solid var(--accent-1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
}

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

.cookie-button {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--accent-1);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #7AB77A;
}

.cookie-reject {
  background-color: transparent;
  color: var(--accent-1);
  border: 1px solid var(--accent-1);
}

.cookie-reject:hover {
  background-color: rgba(143, 188, 143, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-1);
  border: 1px solid var(--accent-1);
}

.cookie-learn:hover {
  background-color: rgba(143, 188, 143, 0.1);
}

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

.thank-you-modal h2 {
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.thank-you-modal p {
  font-size: 1.05rem;
  color: var(--text-primary);
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav ul {
    gap: 1rem;
    flex-direction: column;
  }

  nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .two-column,
  .two-column-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-reverse > div:first-child,
  .two-column-reverse > img {
    order: unset;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-button {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

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

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  header {
    position: relative;
  }

  main {
    margin-top: 0;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    width: 100%;
    flex-direction: column;
  }

  nav a {
    display: block;
    padding: 0.5rem;
    text-align: center;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    margin-top: 0;
    padding: 2.5rem 1rem;
  }

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

  .footer-bottom {
    margin-bottom: 4rem;
  }

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