:root {
  --primary: #004D40;
  --accent-green: #4CAF50;
  --accent-gold: #FFC107;
  --light: #ECEFF1;
  --text-dark: #212121;
  --text-light: #757575;
  --white: #FFFFFF;
}

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

html, body {
  height: 100%;
  font-family: 'Lora', 'Merriweather', serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

header {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

header .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  height: 50px;
  width: 50px;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-gold);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 1rem;
  margin-top: 3rem;
}

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

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

footer h4 {
  color: var(--white);
  font-size: 1.2rem;
}

footer p, footer a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-gold);
}

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

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #006655 100%);
  color: var(--white);
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 2rem;
}

section {
  padding: 4rem 1rem;
}

section.alt {
  background-color: var(--light);
}

section.light-bg {
  background-color: #F5F5F5;
}

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

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

.two-column.reverse {
  direction: rtl;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.card h3 {
  color: var(--primary);
  font-size: 1.4rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.disclaimer-box {
  background-color: var(--light);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.disclaimer-box strong {
  color: var(--primary);
}

.list-unstyled {
  list-style: none;
}

.list-unstyled li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.list-unstyled li:before {
  content: "●";
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
}

table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #DDD;
}

table tr:hover {
  background-color: var(--light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  max-height: 150px;
  overflow-y: auto;
}

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

.cookie-content {
  flex: 1;
  margin-right: 2rem;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--accent-gold);
}

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

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

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

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

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

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

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

.faq-question {
  background-color: var(--light);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #E0F2F1;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--text-dark);
  line-height: 1.8;
}

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

.faq-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

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

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

.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: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

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

.thank-you-container {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-container h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--accent-green);
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.timeline-item h3 {
  margin-top: 0;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  .two-column.reverse {
    direction: ltr;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

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

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

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

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

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

  .cookie-content {
    margin-right: 0;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  section {
    padding: 3rem 1rem;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  header .logo {
    font-size: 1.3rem;
  }

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

  .hero {
    padding: 3rem 1rem;
  }

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

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