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

:root {
  --primary-bg: #F5F5F5;
  --accent-teal: #008080;
  --accent-green: #8FBC8F;
  --accent-dark: #36454F;
  --text-dark: #2C3E50;
  --text-light: #555555;
  --white: #FFFFFF;
  --border-light: #E8E8E8;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

.header-container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

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

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

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

section {
  padding: 4rem 0;
  position: relative;
}

.section-container {
  max-width: 85%;
  margin: 0 auto;
}

.hero {
  background-color: var(--primary-bg);
  text-align: center;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.content {
  padding: 0;
}

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

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

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

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

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

.list-styled {
  list-style-position: inside;
  margin-left: 1rem;
}

.list-styled li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

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

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

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

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

.section-light {
  background-color: #FAFAFA;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, var(--accent-teal), var(--accent-green), transparent);
  margin: 2rem 0;
  width: 100px;
}

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

.button:hover {
  background-color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

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

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

footer {
  background-color: var(--accent-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 85%;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

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

.disclaimer-badge {
  background-color: var(--accent-teal);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin: 1.5rem 0;
  text-align: center;
  font-weight: 600;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  background-color: var(--white);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-teal);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.faq-answer {
  padding: 1.5rem;
  background-color: #FAFAFA;
  display: none;
  border-radius: 0 0 4px 4px;
  line-height: 1.7;
  border: 1px solid var(--border-light);
  border-top: none;
}

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

form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

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

.form-disclaimer {
  background-color: #FFF3E0;
  border-left: 4px solid var(--accent-dark);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

.modal-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.modal-text {
  line-height: 1.8;
  color: var(--text-light);
}

.modal-text strong {
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  min-width: 250px;
}

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

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

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

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

.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-more {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: underline;
}

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

.success-message {
  background-color: #E8F5E9;
  border-left: 4px solid var(--accent-green);
  color: #2E7D32;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

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

thead {
  background-color: var(--accent-teal);
  color: var(--white);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

tbody tr:hover {
  background-color: #F8F8F8;
}

.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: 16px;
  height: 16px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-teal);
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
  color: var(--accent-teal);
}

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

  h2 {
    font-size: 1.5rem;
  }

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

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

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

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

  .header-container {
    max-width: 95%;
  }

  .section-container {
    max-width: 95%;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
  }

  .modal-content {
    max-width: 90%;
    max-height: 90vh;
  }

  section {
    padding: 2rem 0;
  }

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