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

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

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

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #ffc107;
}

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

.hero-section h1 {
  color: #212529;
}

.hero-section .lead {
  color: #495057;
}

.btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

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

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

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffc107;
  color: #212529;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
}

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

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

.product-card-body {
  background: #ffffff;
}

.product-card-full {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

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

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

.cta-section {
  background-color: #212529;
}

.bg-primary {
  background-color: #212529 !important;
}

.footer {
  background-color: #212529;
}

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

.footer a:hover {
  color: #ffc107 !important;
}

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

.value-card,
.tip-card,
.info-card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.contact-form .form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.contact-info-box {
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid #ffc107;
}

.legal-document {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
  color: #212529;
}

.legal-document a {
  color: #ffc107;
  text-decoration: none;
}

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

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

.success-icon {
  display: inline-block;
}

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

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

  .cookie-buttons {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .display-4 {
    font-size: 2rem;
  }
}
