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

body {
  font-family: system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.25s linear;
}

.logo:hover {
  color: #00897B;
}

.nav-menu {
  display: none;
  list-style: none;
}

.nav-menu li {
  display: inline-block;
  margin-left: 24px;
}

.nav-menu a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s linear;
}

.nav-menu a:hover {
  color: #00897B;
}

.hero {
  margin-top: 64px;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 48px;
  max-width: 700px;
  border-left: 4px solid #E0F2F1;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #222;
  font-weight: 300;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #333;
  font-weight: 400;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

section {
  padding: 80px 0;
}

.section-light {
  background: #fff;
}

.section-accent {
  background: #E0F2F1;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.content-text p {
  margin-bottom: 16px;
  color: #555;
}

.content-image {
  width: 100%;
  max-width: 500px;
  border-radius: 2px;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.col {
  background: #fff;
  padding: 32px;
  border-left: 2px solid #E0F2F1;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: #fff;
  border-left: 2px solid #E0F2F1;
}

.faq-question {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-answer {
  color: #555;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #E0F2F1 0%, #fff 100%);
  text-align: center;
  padding: 64px 0;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #00897B;
  text-decoration: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s linear;
  border: 2px solid #E0F2F1;
  margin: 8px;
}

.cta-button:hover {
  background: #E0F2F1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 137, 123, 0.15);
}

.contact-form {
  max-width: 500px;
  margin: 48px auto 0;
  background: #fff;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.25s linear;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E0F2F1;
  box-shadow: 0 0 0 3px rgba(224, 242, 241, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #E0F2F1;
  color: #00897B;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s linear;
}

.btn-submit:hover {
  background: #B2DFDB;
  transform: translateY(-1px);
}

footer {
  background: #f8f9fa;
  padding: 48px 0 24px;
  border-top: 1px solid #E0F2F1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
}

.footer-section p,
.footer-section a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #00897B;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #E0F2F1;
  color: #777;
  font-size: 14px;
}

.disclaimer-box {
  background: #FFF9C4;
  border-left: 4px solid #FBC02D;
  padding: 24px;
  margin: 32px 0;
}

.disclaimer-box h3 {
  color: #F57F17;
  font-size: 20px;
  margin-bottom: 12px;
}

.disclaimer-box p {
  color: #555;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 10000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-cookie {
  padding: 10px 24px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s linear;
  font-weight: 500;
}

.btn-accept {
  background: #E0F2F1;
  color: #00897B;
}

.btn-accept:hover {
  background: #B2DFDB;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: 20px;
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #E0F2F1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 28px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s linear;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 32px;
}

.modal-body h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-body p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.modal-body li {
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: block;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cookie-content {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero-content {
    padding: 32px 24px;
  }
  
  section {
    padding: 48px 0;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .btn-cookie {
    flex: 1;
  }
}
