:root {
  --primary-blue: #2563eb;
  --primary-orange: #f97316;
  --text-dark: #374151;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --border-light: #e5e7eb;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

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

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

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
}

header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.logo:hover {
  opacity: 1;
  color: var(--primary-orange);
}

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

nav a {
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

nav a:hover {
  background-color: var(--bg-light);
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 60px 0;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 16px;
  background-color: var(--bg-light);
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card .description {
  flex-grow: 1;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6b7280;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.badge-rapid {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-clar {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-category {
  background-color: #e0e7ff;
  color: #3730a3;
}

.mode-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.mode-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
}

.mode-card h3 {
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.question-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  margin-bottom: 16px;
}

.question-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.foto-strip {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 40px 0 20px 0;
}

.caption {
  text-align: center;
  font-style: italic;
  color: #6b7280;
  margin-bottom: 40px;
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}

footer a {
  color: white;
}

footer h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

table th {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
}

table tr:hover {
  background-color: var(--bg-light);
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.faq-item h3 {
  font-size: 18px;
  color: var(--primary-blue);
}

form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 16px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-check {
  display: flex;
  align-items: start;
  gap: 8px;
}

.form-check input {
  margin-top: 4px;
}

.switcher {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.switcher-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-light);
  border-radius: 20px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.switcher-btn:hover {
  border-color: var(--primary-blue);
  background-color: var(--bg-light);
}

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

.rule-item {
  background: var(--bg-light);
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-orange);
}

.rule-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.transparency-note {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 16px;
}

.legal-page h1 {
  margin-bottom: 20px;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-page p, .legal-page li {
  margin-bottom: 12px;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.thank-you-box {
  max-width: 600px;
  margin: 100px auto;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.thank-you-box h1 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--border-light);
  padding: 20px;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

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

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

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .foto-strip {
    height: 250px;
  }

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

  table {
    font-size: 14px;
  }

  table th, table td {
    padding: 8px;
  }
}
