:root {
  --color-primary: #5B8FA3;
  --color-text: #2C3E50;
  --color-text-light: #6C757D;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F9FA;
  --color-border: #DEE2E6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg);
}

.header {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  border-radius: 4px;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

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

.hero-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.content-section {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.content-section:first-child {
  border-top: none;
}

.section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.section-image-left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.section-image-right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

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

.faq-question {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-text-light);
}

.cta-box {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.cta-link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  transition: all 0.2s;
  margin-top: 1rem;
}

.cta-link:hover {
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

.btn-submit {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.footer {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-notice {
  background-color: var(--color-primary);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 2px solid var(--color-primary);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1001;
  display: none;
}

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

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.btn-accept {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .section-image-left,
  .section-image-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .section-image {
    max-width: 350px;
  }
}
