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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: #1e40af !important;
}

.nav-link {
  color: #4b5563 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1e40af !important;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.btn-primary {
  background-color: #1e40af;
  border-color: #1e40af;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-outline-primary {
  color: #1e40af;
  border-color: #1e40af;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.features {
  background-color: #ffffff;
}

.feature-box {
  padding: 30px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #1e40af;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.feature-box h3 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  color: #64748b;
}

.products-preview {
  background-color: #f8fafc;
}

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

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

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

.product-body {
  padding: 20px;
}

.product-body h4 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-body p {
  color: #64748b;
  margin-bottom: 15px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.product-features li {
  color: #64748b;
  padding: 5px 0;
  font-size: 0.9rem;
}

.product-features li:before {
  content: "✓ ";
  color: #1e40af;
  font-weight: 700;
  margin-right: 8px;
}

.footer {
  background-color: #1e293b;
  color: #cbd5e1;
}

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

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

.footer a:hover {
  color: #3b82f6;
}

.footer ul {
  padding-left: 0;
}

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

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

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

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #3b82f6;
  text-decoration: underline;
}

.page-header {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.content-section img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #1e40af;
  height: 100%;
}

.value-card h4 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 15px;
}

.info-box {
  background: #f0f9ff;
  border: 2px solid #bfdbfe;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.info-box h3 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 15px;
}

.products-section .product-card {
  margin-bottom: 30px;
}

.contact-form {
  background: #f8fafc;
  padding: 30px;
  border-radius: 8px;
}

.contact-form label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

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

.contact-form .form-control:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-info-box {
  background: #f8fafc;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #1e40af;
}

.contact-info-box h4 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-box p {
  margin-bottom: 0;
  color: #475569;
}

.contact-info-box a {
  color: #1e40af;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

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

.thank-you-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-box h1 {
  color: #1e40af;
  font-weight: 700;
}

.step-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #1e40af;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step-box h5 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-box p {
  color: #64748b;
  margin-bottom: 0;
}

.legal-content {
  background: #ffffff;
}

.legal-content h2 {
  color: #1e293b;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #e2e8f0;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: #1e40af;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.legal-content p {
  color: #475569;
  margin-bottom: 15px;
}

.legal-content ul {
  color: #475569;
  margin-bottom: 20px;
}

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

.legal-content a {
  color: #1e40af;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

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

  .hero {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .thank-you-box {
    padding: 30px 20px;
  }

  .cookie-banner .col-md-4 {
    text-align: center;
    margin-top: 15px;
  }
}
