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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

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

header {
  background: #fff;
  border-bottom: 1px solid #E0E0E0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 36px;
}

.logo {
  font-size: 20px;
  font-weight: 500;
  color: #0D47A1;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #0D47A1;
}

main {
  margin-top: 80px;
}

.hero {
  padding: 72px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #0D47A1;
}

.hero p {
  font-size: 19px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 36px;
}

.hero-image {
  max-width: 700px;
  height: auto;
  margin: 48px auto 0;
  display: block;
}

.section {
  padding: 72px 0;
  border-top: 1px solid #E0E0E0;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 36px;
  color: #0D47A1;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #333;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.content-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.content-image.float-right {
  float: right;
  margin: 0 0 36px 36px;
  max-width: 45%;
}

.content-image.float-left {
  float: left;
  margin: 0 36px 36px 0;
  max-width: 45%;
}

p {
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: #0D47A1;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #0A3780;
  color: #fff;
}

.disclaimer-box {
  background: #F5F5F5;
  padding: 36px;
  margin: 48px 0;
  border-left: 3px solid #0D47A1;
}

.disclaimer-box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

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

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

.faq-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #0D47A1;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  font-size: 17px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #0D47A1;
}

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

footer {
  background: #F5F5F5;
  border-top: 1px solid #E0E0E0;
  padding: 72px 0 36px;
  margin-top: 72px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #0D47A1;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.footer-section a:hover {
  color: #0D47A1;
}

.footer-bottom {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid #E0E0E0;
  font-size: 14px;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E0E0E0;
  padding: 24px 36px;
  display: none;
  z-index: 1001;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 15px;
}

.cookie-button {
  padding: 10px 24px;
  background: #0D47A1;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
}

.contact-info {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 17px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .content-image.float-right,
  .content-image.float-left {
    float: none;
    margin: 24px 0;
    max-width: 100%;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 48px 0;
  }
}
