* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-fixed .navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #27AE60;
  text-decoration: none;
}

.header-fixed .navbar-brand:hover {
  color: #1e8449;
}

.header-fixed .nav-link {
  color: #333;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

.header-fixed .nav-link:hover {
  color: #27AE60;
}

body {
  padding-top: 80px;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: #27AE60;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #1e8449;
}

.hero-section {
  background-color: #ffffff;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-section h1 {
  color: #27AE60;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.7;
}

.content-section {
  background-color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.content-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

.content-img-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 400px;
}

.content-img-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 400px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.btn-custom {
  background-color: #27AE60;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: #1e8449;
  color: #ffffff;
}

.disclaimer-box {
  background-color: #f0f7f3;
  border-left: 4px solid #27AE60;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: #27AE60;
}

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

.faq-section h3 {
  color: #27AE60;
}

.contact-form-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: 1.5;
}

.form-control:focus {
  outline: none;
  border-color: #27AE60;
}

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer a {
  color: #ecf0f1;
  text-decoration: none;
}

.footer a:hover {
  color: #27AE60;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #95a5a6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.cookie-banner button {
  background-color: #27AE60;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-banner button:hover {
  background-color: #1e8449;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  body {
    font-size: 1rem;
  }

  .content-img-left,
  .content-img-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .content-section {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .header-fixed .nav-link {
    margin-left: 0.5rem;
    font-size: 0.9rem;
  }
}
