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

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.09rem;
  line-height: 1.71;
  background-color: #F8FBFF;
  color: #333;
}

.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-spacer {
  height: 80px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0277BD;
  text-decoration: none;
}

.logo:hover {
  color: #0277BD;
  text-decoration: none;
}

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

.nav-link:hover {
  color: #0277BD;
}

h1 {
  font-size: 2.75rem;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #222;
  font-weight: 600;
}

h2 {
  font-size: 2.05rem;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-top: 48px;
  color: #222;
  font-weight: 600;
}

h3 {
  font-size: 1.48rem;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-top: 32px;
  color: #333;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

.hero-section {
  background-color: #FFFFFF;
  padding: 64px 0;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
}

.content-section {
  padding: 48px 0;
  background-color: #FFFFFF;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 16px 0;
}

.content-image-left {
  float: left;
  margin-right: 24px;
  margin-bottom: 16px;
}

.content-image-right {
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
}

.btn-custom {
  background-color: #0277BD;
  color: #FFFFFF;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.27s ease;
  cursor: pointer;
}

.btn-custom:hover {
  background-color: #01579B;
  color: #FFFFFF;
}

.btn-outline-custom {
  background-color: transparent;
  color: #0277BD;
  border: 2px solid #0277BD;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.27s ease;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background-color: #0277BD;
  color: #FFFFFF;
}

.footer {
  background-color: #FFFFFF;
  padding: 48px 0 24px;
  margin-top: 64px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  margin-top: 0;
  color: #0277BD;
}

.footer a {
  color: #333;
  text-decoration: none;
  transition: color 0.27s ease;
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #0277BD;
}

.footer-bottom {
  border-top: 1px solid #E0E0E0;
  padding-top: 24px;
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.form-control {
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.27s ease;
}

.form-control:focus {
  border-color: #0277BD;
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 119, 189, 0.1);
}

.disclaimer-box {
  background-color: #F8FBFF;
  border-left: 4px solid #0277BD;
  padding: 24px;
  margin: 32px 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: #0277BD;
  font-size: 1.3rem;
}

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

.faq-item h3 {
  margin-top: 0;
  color: #0277BD;
  font-size: 1.2rem;
}

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

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

.icon-placeholder {
  width: 48px;
  height: 48px;
  border: 2px solid #0277BD;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0277BD;
  font-size: 24px;
  margin-bottom: 16px;
}

.info-box {
  background-color: #F8FBFF;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
  border: 1px solid #E3F2FD;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  body {
    font-size: 1rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 16px auto;
    display: block;
  }
  
  .hero-section {
    padding: 32px 0;
  }
  
  .content-section {
    padding: 32px 0;
  }
}

@media (max-width: 576px) {
  .header-spacer {
    height: 70px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .content-image {
    max-width: 100%;
  }
}
