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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333;
  background-color: #F8F9FA;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 16px 0;
}

.header-spacer {
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2C7A7B;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #2C7A7B;
}

.nav-link {
  color: #333;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.25s ease;
  font-size: 1rem;
}

.nav-link:hover {
  color: #2C7A7B;
  text-decoration: none;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #2C7A7B;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #2C7A7B;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #2C7A7B;
}

.section-padding {
  padding: 64px 0;
}

.hero-section {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 48px;
  border-radius: 8px;
  max-width: 700px;
}

.content-card {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s ease;
}

.content-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.image-float-left {
  float: left;
  margin: 0 24px 24px 0;
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-float-right {
  float: right;
  margin: 0 0 24px 24px;
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-full {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
}

.btn-primary {
  background-color: #2C7A7B;
  border-color: #2C7A7B;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  border: 2px solid #2C7A7B;
}

.btn-primary:hover {
  background-color: #236365;
  border-color: #236365;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #2C7A7B;
  color: #2C7A7B;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background-color: #2C7A7B;
  color: #ffffff;
  text-decoration: none;
}

.disclaimer-box {
  background: #FFF9E6;
  border-left: 4px solid #2C7A7B;
  padding: 24px;
  margin: 32px 0;
  border-radius: 4px;
}

.footer {
  background: #ffffff;
  padding: 48px 0 24px;
  margin-top: 64px;
  border-top: 1px solid #e0e0e0;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-link {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #2C7A7B;
  text-decoration: none;
}

.contact-info {
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 24px;
  z-index: 9999;
  display: none;
}

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

.form-control {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  transition: border-color 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2C7A7B;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  body {
    font-size: 1rem;
  }
  
  .image-float-left,
  .image-float-right {
    float: none;
    margin: 0 0 24px 0;
    max-width: 100%;
  }
  
  .hero-overlay {
    padding: 32px 24px;
  }
  
  .content-card {
    padding: 24px;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}
