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

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

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #1e3a8a;
  font-weight: 700;
}

.navbar-brand:hover {
  color: #2563eb;
}

.nav-link {
  color: #475569;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
  color: #2563eb;
  border-color: #2563eb;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2rem;
}

.info-section {
  padding: 3rem 0;
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.technique-box {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  height: 100%;
}

.technique-box h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.advice-list {
  list-style: none;
  padding-left: 0;
}

.advice-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.advice-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
}

.benefit-item h3 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.product-body p {
  color: #475569;
  margin-bottom: 1rem;
  flex: 1;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #475569;
  font-size: 0.9rem;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: #475569;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1e3a8a;
  text-align: right;
}

.contact-form-wrapper {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
  background: #f0f9ff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.contact-info h3 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.site-footer {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  color: #ffffff;
}

.cookie-banner a {
  color: #60a5fa;
  text-decoration: underline;
}

.page-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  padding: 3rem 0;
}

.page-header h1 {
  color: #1e3a8a;
  font-weight: 700;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.policy-section h3 {
  color: #1e3a8a;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.policy-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.success-icon {
  text-align: center;
}

.next-step {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  text-align: center;
}

.next-step h4 {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

.feature-box h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .info-section {
    padding: 2rem 0;
  }

  .thank-you-content {
    padding: 2rem;
  }

  .cookie-banner .text-right {
    text-align: center !important;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .product-img {
    height: 200px;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}
