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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

.btn-primary {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background-color: #fd7e14;
  border-color: #fd7e14;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #e8710f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
  color: #fff;
  text-decoration: none;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 16px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.navbar-brand:hover {
  color: #333;
}

.nav-link {
  color: #666;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.section-gray {
  background-color: #f8f9fa;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.scenario-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.scenario-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.scenario-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.scenario-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.scenario-card a {
  color: #007bff;
  font-weight: 500;
}

.two-column-section {
  display: flex;
  align-items: center;
  gap: 48px;
}

.two-column-section .text-content {
  flex: 1;
}

.two-column-section .image-content {
  flex: 1;
}

.two-column-section .image-content img {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-card-body {
  padding: 24px;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.product-scenario-tag {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 8px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 16px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.photo-strip-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.photo-strip-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
}

.comparison-list {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.comparison-list ul {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 16px;
  color: #333;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  content: "→";
  color: #007bff;
  font-weight: 700;
  margin-right: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.faq-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.faq-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.faq-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-chip {
  background: #e9ecef;
  color: #495057;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-chip:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.05);
}

.comparison-table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: #007bff;
  color: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #e9ecef;
  color: #333;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: #f8f9fa;
}

.divider-section {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.divider-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.divider-content h3 {
  font-size: 32px;
  font-weight: 700;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.rule-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.rule-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.rule-card p {
  font-size: 15px;
  color: #666;
}

.contact-form {
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
}

.form-check label {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.footer {
  background: #212529;
  color: #adb5bd;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer ul li a {
  color: #adb5bd;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #343a40;
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #212529;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #28a745;
  color: #fff;
}

.cookie-accept:hover {
  background: #218838;
}

.cookie-decline {
  background: #6c757d;
  color: #fff;
}

.cookie-decline:hover {
  background: #5a6268;
}

.thank-you-box {
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 600px;
  margin: 80px auto;
}

.thank-you-box h1 {
  font-size: 36px;
  color: #28a745;
  margin-bottom: 20px;
}

.thank-you-box p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.legal-content {
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 40px auto;
}

.legal-content h1 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #333;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #333;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #333;
}

.legal-content p {
  margin-bottom: 16px;
  color: #666;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #666;
  line-height: 1.8;
}

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

  .section-title {
    font-size: 28px;
  }

  .two-column-section {
    flex-direction: column;
  }

  .navbar-collapse {
    margin-top: 16px;
  }

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

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

  .photo-strip {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-form {
    padding: 32px 24px;
  }

  .legal-content {
    padding: 32px 24px;
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }
}
