:root {
  --primary-color: #5A8B7B;
  --accent-gold: #F8D588;
  --accent-bronze: #E0B080;
  --dark-gray: #4A4A4A;
  --light-bg: #f9f8f5;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.4rem;
}

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

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

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

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

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

nav a {
  font-size: 0.95rem;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

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

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--light-bg);
}

.hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}

section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
}

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

.card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

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

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

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

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

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

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .two-column.reverse {
    direction: ltr;
  }
}

.button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.button-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

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

footer h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

footer p {
  color: #d0d0d0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

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

.footer-section {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  cursor: pointer;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #666;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #b0b0b0;
}

.disclaimer {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.form-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7a9b8b 100%);
  color: var(--white);
  padding: 4rem 2rem;
}

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

.form-content h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background-color: rgba(255,255,255,0.95);
}

.form-group input::placeholder {
  color: #999;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-gold);
  color: var(--dark-gray);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-button:hover {
  background-color: var(--accent-bronze);
  transform: translateY(-2px);
}

.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-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

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

.close-modal {
  color: var(--dark-gray);
  float: right;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal h2 {
  margin-top: 0;
  color: var(--primary-color);
}

.modal p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.modal h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

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

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

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

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

.cookie-policy {
  background-color: transparent;
  color: var(--accent-gold);
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-policy:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

.thank-you-message {
  display: none;
  padding: 1.5rem;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  color: #155724;
  margin-top: 1rem;
  text-align: center;
}

.thank-you-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2rem;
}

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

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

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

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

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

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

.faq-icon.open {
  transform: rotate(180deg);
}

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

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 16px;
  width: 2px;
  height: 60px;
  background-color: #e0e0e0;
}

.timeline-item:last-child::after {
  display: none;
}

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

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

.stat {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.accent-text {
  color: var(--accent-bronze);
}

.separator {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 3rem 0;
}
