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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  background-color: #FAFAFA;
}

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

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

.logo-link {
  text-decoration: none;
  color: #264653;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #264653;
  transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

.main-content {
  margin-top: 80px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(38, 70, 83, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #FFFFFF;
  padding: 24px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
}

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

.section-alt {
  padding: 64px 0;
  background: #FAFAFA;
}

h1 {
  font-size: 2.8rem;
  color: #264653;
  margin-bottom: 24px;
  font-weight: 700;
}

h2 {
  font-size: 2.0rem;
  color: #264653;
  margin-bottom: 24px;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  color: #264653;
  margin-bottom: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

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

.content-image-left {
  flex-direction: row;
}

.content-image-right {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 40%;
  max-width: 400px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.btn-read-more {
  display: inline-block;
  padding: 12px 32px;
  background-color: #264653;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-read-more:hover {
  background-color: #1a3340;
  color: #FFFFFF;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-section p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-section a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.95rem;
}

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

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

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

.cookie-text {
  flex: 1;
}

.cookie-actions button {
  padding: 12px 32px;
  background: #FFFFFF;
  color: #264653;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.cookie-actions button:hover {
  opacity: 0.8;
}

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

  .hero-content p {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 8px;
  }

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

  .content-image {
    flex: 1;
    max-width: 100%;
  }

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

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

  .section-standard,
  .section-alt {
    padding: 40px 0;
  }
}
