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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #3a3a3a;
  line-height: 1.6;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #3a3a3a;
  text-decoration: none;
}

.logo:hover {
  color: #3a3a3a;
  text-decoration: none;
}

.nav-link {
  color: #0066cc;
  padding: 8px 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-link:hover {
  color: #0052a3;
  text-decoration: none;
  opacity: 0.8;
}

.btn-primary {
  background-color: #ff8c42;
  border: none;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #ff7829;
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(255, 140, 66, 0.3);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ff8c42;
  color: #ff8c42;
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background-color: #ff8c42;
  color: #ffffff;
  transform: scale(1.03);
}

.section {
  padding: 50px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3a3a3a;
}

.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 10px;
}

.product-badge {
  display: inline-block;
  background-color: #0066cc;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 8px;
}

.product-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.question-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.question-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.answer-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.answer-btn {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
}

.answer-btn:hover {
  border-color: #ff8c42;
  background-color: #fff5ed;
  transform: scale(1.03);
  text-decoration: none;
  color: #3a3a3a;
}

.image-strip {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
}

.clarification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.clarification-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.clarification-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.clarification-text {
  font-size: 14px;
  color: #666;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #3a3a3a;
}

.comparison-table tr:hover {
  background-color: #f8f9fa;
}

.footer {
  background-color: #f8f9fa;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3a3a3a;
}

.footer-link {
  color: #0066cc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-link:hover {
  color: #0052a3;
  text-decoration: underline;
}

.footer-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #3a3a3a;
}

.rule-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.rule-number {
  font-size: 20px;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 10px;
}

.rule-text {
  font-size: 14px;
  color: #666;
}

.tip-block {
  background-color: #e6f2ff;
  border-left: 4px solid #0066cc;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.tip-title {
  font-size: 16px;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 10px;
}

.tip-text {
  font-size: 14px;
  color: #3a3a3a;
}

.quick-answer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.quick-answer-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #ff8c42;
}

.quick-answer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.quick-answer-text {
  font-size: 14px;
  color: #666;
}

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

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  color: #3a3a3a;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #3a3a3a;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-content li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .question-title {
    font-size: 20px;
  }

  .answer-options {
    flex-direction: column;
  }

  .answer-btn {
    width: 100%;
  }

  .clarification-grid {
    grid-template-columns: 1fr;
  }

  .quick-answer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn-primary,
  .cookie-buttons .btn-outline {
    flex: 1;
  }
}
