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

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

.navbar {
  background-color: #1a2332;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.5px;
}

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

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #4a90e2;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(26, 35, 50, 0.85), rgba(26, 35, 50, 0.4));
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content .lead {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

.page-hero {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  font-size: 1.1rem;
  opacity: 0.9;
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.content-section ul {
  margin-bottom: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 0;
}

.products-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.products-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

.product-body {
  padding: 1.5rem;
}

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

.product-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.faq-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 0;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #ffffff;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  background-color: #4a90e2;
  border-color: #4a90e2;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #357abd;
  border-color: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2332;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
}

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

.form-control {
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-weight: 400;
  color: #4a4a4a;
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1rem;
}

.thank-you-section .lead {
  font-size: 1.1rem;
  color: #4a4a4a;
}

.footer {
  background-color: #1a2332;
  color: #e0e0e0;
  padding: 3rem 0 1.5rem;
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b0b0b0;
}

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

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

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

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

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

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

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

.cookie-banner a {
  color: #4a90e2;
  text-decoration: underline;
}

.cookie-banner .btn {
  margin-left: 0.5rem;
}

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

  .hero-content .lead {
    font-size: 1.1rem;
  }

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

  .content-section h2 {
    font-size: 1.75rem;
  }

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

  .cookie-banner .btn {
    margin-top: 1rem;
    margin-left: 0;
    width: 100%;
  }

  .cookie-banner .text-right {
    text-align: left !important;
  }
}
