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

.navbar-brand {
  font-size: 1.5rem;
  color: #0056b3;
}

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

.hero-section h1 {
  color: #0056b3;
  margin-bottom: 20px;
}

.hero-section .lead {
  color: #495057;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
}

.info-card {
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.breathing-card {
  border-color: #0056b3;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0056b3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.advantage-icon {
  font-size: 48px;
  color: #0056b3;
}

.product-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background: white;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
  height: 250px;
  object-fit: cover;
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 20px;
}

.testimonial-text {
  font-style: italic;
  color: #495057;
}

.footer {
  background-color: #212529;
}

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

.footer a:hover {
  color: #0056b3;
}

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

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

.policy-content h3 {
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h4 {
  color: #495057;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content ul {
  margin-bottom: 20px;
}

.about-hero {
  background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
  color: white;
  padding: 80px 0;
}

.value-card {
  padding: 30px;
  border-radius: 8px;
  background: white;
  height: 100%;
}

.blog-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: white;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-meta {
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-content h3 {
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.contact-info-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.thank-you-icon {
  font-size: 80px;
  color: #28a745;
}

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

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

  .product-card .card-img-top {
    height: 200px;
  }
}
