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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  line-height: 1.69;
  color: #333;
  background-color: #FCFCFC;
}

h1 {
  font-size: 2.65rem;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #00695C;
}

h2 {
  font-size: 1.95rem;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #00695C;
}

h3 {
  font-size: 1.42rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #00695C;
}

p {
  margin-bottom: 16px;
}

a {
  color: #00695C;
  text-decoration: none;
  transition: all 0.26s ease;
}

a:hover {
  color: #004d40;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 9px rgba(0,0,0,0.07);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00695C;
}

.logo img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav a {
  font-size: 1rem;
  font-weight: 500;
}

.hero {
  margin-top: 80px;
  padding: 64px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  box-shadow: 0 2px 9px rgba(0,0,0,0.07);
}

.section {
  padding: 64px 0;
  background-color: #FFFFFF;
  margin-bottom: 8px;
}

.section:nth-child(even) {
  background-color: #FCFCFC;
}

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

.content-with-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 9px rgba(0,0,0,0.07);
  border-radius: 4px;
}

.content-with-image.left img {
  order: -1;
}

.content-with-image.right img {
  order: 1;
}

.text-content {
  flex: 1;
}

.disclaimer-box {
  background-color: #f5f5f5;
  border-left: 4px solid #00695C;
  padding: 24px;
  margin: 32px 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 9px rgba(0,0,0,0.07);
  border-radius: 4px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.cta-section {
  text-align: center;
  padding: 48px 0;
  background-color: #FFFFFF;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #00695C;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.26s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #004d40;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #00695C;
  border: 2px solid #00695C;
}

.btn-outline:hover {
  background-color: #00695C;
  color: #FFFFFF;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.26s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00695C;
}

.form-disclaimer {
  background-color: #f5f5f5;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 0.95rem;
}

footer {
  background-color: #333;
  color: #FFFFFF;
  padding: 48px 0 24px;
}

footer h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

footer a {
  color: #FFFFFF;
  display: block;
  margin-bottom: 8px;
}

footer a:hover {
  color: #00695C;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #555;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -2px 9px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav ul {
    flex-direction: column;
    gap: 16px;
  }

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

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

  .cookie-banner .container {
    flex-direction: column;
  }

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