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

:root {
  --primary-color: #87CEEB;
  --primary-dark: #5BA3C7;
  --accent-green: #50C878;
  --accent-coral: #FF7F50;
  --accent-sand: #C2B280;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

header {
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--accent-green);
}

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

section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 8rem 2rem;
}

.section-hero h1 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.section-hero p {
  color: var(--bg-white);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.section-hero img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.two-column-text {
  flex: 1;
}

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

.two-column img:hover {
  transform: scale(1.02);
}

.two-column-reversed {
  grid-template-columns: 1fr 1fr;
}

.two-column-reversed .two-column-text {
  order: 2;
}

.two-column-reversed img {
  order: 1;
}

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

.card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-green);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

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

.pillar-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
}

.pillar-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.pillar-content {
  padding: 1.5rem;
  background: var(--bg-white);
}

.pillar-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.pillar-content p {
  font-size: 0.9rem;
}

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

.text-section ul {
  list-style: none;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-section ul li {
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.text-section ul li:before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 1.2rem;
}

.text-section ol {
  margin-left: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-section ol li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

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

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

.section-form {
  background: linear-gradient(135deg, var(--accent-green) 0%, rgba(80, 200, 120, 0.9) 100%);
  color: var(--bg-white);
  text-align: center;
}

.section-form h2 {
  color: var(--bg-white);
  margin-bottom: 3rem;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--bg-white);
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-coral);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.3);
}

.btn-secondary {
  background-color: var(--accent-sand);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #d4a574;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
}

.btn-outline:hover {
  background-color: var(--accent-green);
  color: var(--bg-white);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--accent-green);
}

.btn-white:hover {
  background-color: var(--bg-light);
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

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

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

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section a {
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
  padding-top: 2rem;
}

.footer-bottom {
  text-align: center;
  color: #999;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.disclaimer-banner {
  background-color: var(--accent-sand);
  color: var(--text-dark);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

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

.modal-content {
  background-color: var(--bg-white);
  margin: 5% auto;
  padding: 3rem;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
}

.close-btn {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--accent-green);
}

.modal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.modal-body li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 1999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: var(--bg-white);
}

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

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

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

.cookie-view {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.cookie-view:hover {
  background-color: #5BA3C7;
}

.thank-you-message {
  display: none;
  background-color: var(--accent-green);
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  animation: slideIn 0.5s ease;
}

.thank-you-message.show {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  h2 {
    font-size: 1.6rem;
  }

  .section-hero h1 {
    font-size: 2.2rem;
  }

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

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  .two-column-reversed {
    grid-template-columns: 1fr;
  }

  .two-column-reversed .two-column-text {
    order: auto;
  }

  .two-column-reversed img {
    order: auto;
  }

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

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

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

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

  .cookie-buttons {
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    flex: 1;
  }

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

  section {
    padding: 3rem 0;
  }
}
