:root {
  --primary-color: #388E3C;
  --primary-dark: #2E7D32;
  --text-color: #212121;
  --text-secondary: #757575;
  --bg-color: #FFFFFF;
  --bg-light: #F5F5F5;
  --border-color: #E0E0E0;
}

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

body {
  font-family: system-ui, -apple-system, Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 15px;
}

h1 {
  font-size: 2.55rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 1.95rem;
  line-height: 1.35;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.48rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

.header .navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
}

.header .navbar-brand:hover {
  color: var(--primary-dark);
}

.header .nav-link {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.header .nav-link:hover {
  color: var(--primary-color);
}

.hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

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

.hero-text {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

.section {
  padding: 3rem 0;
}

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

.content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.content-with-image.image-left {
  flex-direction: row;
}

.content-with-image.image-right {
  flex-direction: row-reverse;
}

.content-with-image .content-text {
  flex: 1;
}

.content-with-image .content-image {
  flex: 0 0 45%;
  max-width: 450px;
}

.content-with-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h3 {
  color: var(--primary-color);
}

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

.disclaimer h3 {
  color: #F57F17;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

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

.faq-item {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
  color: var(--text-color);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer {
  background-color: #263238;
  color: #ECEFF1;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer a {
  color: #B0BEC5;
}

.footer a:hover {
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid #37474F;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #90A4AE;
  font-size: 0.95rem;
}

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

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner button:hover {
  background-color: var(--primary-dark);
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  body {
    font-size: 1rem;
  }

  .content-with-image {
    flex-direction: column !important;
  }

  .content-with-image .content-image {
    flex: 1;
    max-width: 100%;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .card {
    padding: 1.5rem;
  }
}
