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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  color: #2C3E50;
  line-height: 1.6;
}

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

a:hover {
  color: #2ECC71;
}

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

h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #2C3E50;
  margin-bottom: 1rem;
  margin-top: 0.8rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #2C3E50;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #2C3E50;
  padding: 1rem 2rem;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header nav {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2ECC71;
}

.logo a {
  color: #2ECC71;
}

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

.nav-links a {
  color: #ffffff;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2ECC71;
}

main {
  margin-top: 80px;
  min-height: 100vh;
}

.section {
  padding: 4rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section-alt {
  background-color: #f8f9fa;
}

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

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

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

.two-column.reverse > *:last-child {
  order: 1;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 400px;
  object-fit: cover;
}

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

.card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #E74C3C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: #E74C3C;
  margin-top: 0;
}

.card.accent {
  border-left-color: #2ECC71;
}

.card.accent h3 {
  color: #2ECC71;
}

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

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

.timeline-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E74C3C;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px #E74C3C;
}

.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero p {
  color: #ecf0f1;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero .hero-image {
  margin-top: 2rem;
  width: 90%;
  max-width: 500px;
}

.hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  max-height: 350px;
  object-fit: cover;
}

.cta-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.8rem;
  background-color: #E74C3C;
  color: #ffffff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.cta-link:hover {
  background-color: #2ECC71;
  color: #ffffff;
}

.cta-link-secondary {
  background-color: #F1C40F;
  color: #2C3E50;
}

.cta-link-secondary:hover {
  background-color: #E74C3C;
  color: #ffffff;
}

footer {
  background-color: #2C3E50;
  color: #ecf0f1;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: #2ECC71;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: #ecf0f1;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: #2ECC71;
}

.footer-bottom {
  border-top: 1px solid #34495E;
  padding-top: 2rem;
  text-align: center;
  color: #95a5a6;
}

.disclaimer {
  background-color: #E8F5E9;
  border-left: 4px solid #2ECC71;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer h3 {
  color: #2ECC71;
  margin-top: 0;
}

.disclaimer p {
  margin: 0.5rem 0;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #E74C3C;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

button {
  background-color: #E74C3C;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2ECC71;
}

.form-disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #2C3E50;
}

.faq-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #e9ecef;
}

.faq-item h3 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2C3E50;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #E74C3C;
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  color: #2C3E50;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th {
  background-color: #2C3E50;
  color: #ffffff;
  padding: 1rem;
  text-align: left;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:hover {
  background-color: #f8f9fa;
}

.list-styled {
  margin: 1.5rem 0;
  padding-left: 0;
}

.list-styled li {
  list-style: none;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.list-styled li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ECC71;
  font-weight: bold;
}

.hero-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #2C3E50;
  color: #ecf0f1;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

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

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

.cookie-accept {
  background-color: #2ECC71;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #27ae60;
}

.cookie-decline {
  background-color: #95a5a6;
  color: #ffffff;
}

.cookie-decline:hover {
  background-color: #7f8c8d;
}

.cookie-learn {
  background-color: transparent;
  color: #2ECC71;
  border: 1px solid #2ECC71;
}

.cookie-learn:hover {
  background-color: #2ECC71;
  color: #2C3E50;
}

.success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

.success-message h2 {
  color: #155724;
  margin-top: 0;
}

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

  h2 {
    font-size: 1.5rem;
  }

  header {
    padding: 0.8rem 1rem;
  }

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

  main {
    margin-top: 70px;
  }

  .section {
    padding: 2rem 1rem;
  }

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

  .two-column.reverse > *:first-child {
    order: initial;
  }

  .two-column.reverse > *:last-child {
    order: initial;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: auto;
  }

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

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

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

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

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

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

  .cookie-buttons button {
    flex: 1;
    min-width: 100px;
  }

  .two-column img {
    max-height: 300px;
  }

  .hero img {
    max-height: 250px;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .section {
    padding: 1.5rem 0.8rem;
  }

  .hero {
    padding: 2rem 0.8rem;
  }

  form {
    margin: 1rem auto;
  }

  .cta-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
