body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}
.advertorial-label {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin: 16px 0 0 0;
  letter-spacing: 0.05em;
}
.advertorial-label--top {
  margin-top: 12px;
}
.advertorial-label--bottom {
  margin-bottom: 12px;
}
.site-header {
  background: #f5f7fa;
  border-bottom: 1px solid #e0e3e8;
  padding: 18px 0 12px 0;
  margin-bottom: 24px;
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a3a5d;
  letter-spacing: 0.04em;
}
.main-content {
  min-height: 300px;
  margin-bottom: 32px;
}
.site-footer {
  background: #f5f7fa;
  border-top: 1px solid #e0e3e8;
  padding: 24px 0 12px 0;
  font-size: 0.95rem;
  color: #444;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #1a3a5d;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #2e7d32;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
  line-height: 1.5;
}
.text-block {
  margin: 18px 0;
  line-height: 1.6;
}
.highlight-block {
  background: #fff7dd;
  padding: 8px 12px;
  margin: 18px 0 0 0;
  font-size: 1.08em;
  font-weight: 600;
  border-left: 4px solid #e0c96a;
}
.text-block.highlight {
  background: #fff7dd;
  padding: 10px 12px;
  border-radius: 4px;
  margin: 12px 0;
}
.hl {
  color: #b8860b;
  font-weight: 600;
}
.info-box {
  background: #f5f7fa;
  color: #555;
  font-size: 0.95em;
  padding: 8px 12px;
  border: 1px solid #e0e3e8;
  border-radius: 4px;
  margin: 10px 0 4px 0;
}
.meta {
  color: #888;
  font-size: 0.92em;
  margin-bottom: 10px;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.features-list li {
  background: #fff7dd;
  margin-bottom: 12px;
  padding: 10px 12px 10px 32px;
  border-radius: 4px;
  position: relative;
  font-size: 1em;
}
.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #19c900;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 16px;
}
.cta-link {
  color: #0056d6;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.08em;
  display: inline-block;
  margin: 6px 0;
}
.cta-link:hover {
  color: #2e7d32;
}
blockquote {
  background: #f5f7fa;
  border-left: 4px solid #e0e3e8;
  margin: 12px 0;
  padding: 10px 16px;
  font-style: italic;
  color: #444;
}
.main-img {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .logo {
    font-size: 1.2rem;
  }
  .main-content {
    margin-bottom: 20px;
  }
  .site-footer {
    padding: 16px 0 8px 0;
    font-size: 0.85rem;
  }
  .main-img {
    max-width: 100%;
  }
  .highlight-block, .text-block.highlight, .features-list li {
    font-size: 0.98em;
    padding: 8px 8px 8px 24px;
  }
  .dot {
    width: 11px;
    height: 11px;
    left: 6px;
    top: 14px;
  }
}
.checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #19c900;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  top: 3px;
}
.checkbox:after {
  content: '\2714';
  color: #19c900;
  font-size: 1.1em;
  position: absolute;
  left: 2px;
  top: -2px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #e0e3e8;
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 1em;
  margin-bottom: 6px;
  box-sizing: border-box;
}
.contact-form button {
  background: #1a3a5d;
  color: #fff;
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 6px;
}
.contact-form button:hover {
  background: #2e7d32;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.35);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 24px 32px;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  position: relative;
}
.close-modal {
  color: #888;
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 1.6em;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #d32f2f;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #f5f7fa;
  border-top: 1px solid #e0e3e8;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  padding: 0;
  font-size: 1em;
}
.cookie-banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 18px 16px 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-content span {
  color: #222;
  margin-right: 16px;
  flex: 1 1 250px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner-buttons button {
  background: #1a3a5d;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 7px 18px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner-buttons button#cookieDecline {
  background: #e0e3e8;
  color: #1a3a5d;
}
.cookie-banner-buttons button:hover {
  background: #2e7d32;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px 10px 8px;
  }
  .cookie-banner-content span {
    margin-bottom: 10px;
    margin-right: 0;
  }
} 