:root {
  --primary-bg: #E0E0E0;
  --accent-green: #A5D6A7;
  --accent-blue: #64B5F6;
  --accent-orange: #FFB74D;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-color: #CCCCCC;
}

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

html, body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

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

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-brand img {
  height: 40px;
  margin-right: 0.5rem;
}

.nav-link {
  font-size: 1rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-green);
}

main {
  margin-top: 80px;
  padding-bottom: 2rem;
}

section {
  padding: 6rem 0;
}

section.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-banner.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  margin-top: -80px;
  padding-top: 80px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

.row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col-text {
  flex: 1;
}

.col-image {
  flex: 1;
  text-align: center;
}

.col-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.column-card {
  text-align: center;
}

.column-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-green);
}

.card-icon {
  height: 80px;
  margin: 0 auto 1.5rem;
}

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

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

.cta-button:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(165, 214, 167, 0.3);
}

.cta-button:active {
  opacity: 0.9;
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 2rem;
}

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

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

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
  background-color: var(--primary-bg);
}

.faq-item {
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-blue);
  padding-left: 1.5rem;
}

.faq-question {
  margin-bottom: 0.75rem;
}

.faq-question h3 {
  margin-bottom: 0;
  color: var(--text-dark);
}

.faq-answer {
  color: var(--text-light);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

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

.footer-section a,
.footer-section p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.footer-bottom {
  border-top: 1px solid #555555;
  padding-top: 1.5rem;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  font-size: 0.9rem;
}

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

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

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

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

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

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

.cookie-accept:hover {
  background-color: #81c784;
}

.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(--accent-blue);
  border: none;
  padding: 0.6rem 0;
}

.cookie-more:hover {
  text-decoration: underline;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

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

  section {
    padding: 3rem 0;
  }

  .row {
    flex-direction: column;
  }

  .row.reverse {
    flex-direction: column;
  }

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

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

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

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

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .container-wide {
    padding: 0 1rem;
  }

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

  section {
    padding: 2rem 0;
  }

  table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.75rem;
  }
}
