* {
  box-sizing: border-box;
}

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

.main-header {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.hero-section {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 64, 133, 0.85) 0%, rgba(0, 86, 179, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  max-width: 800px;
}

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

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #004085 0%, #003366 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 64, 133, 0.3);
}

.btn-outline-primary {
  border: 2px solid #0056b3;
  color: #0056b3;
  background: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
  background: transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: #6c757d;
  color: #ffffff;
}

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

.gradient-section {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  color: #ffffff;
  padding: 4rem 0;
  margin: 4rem 0;
}

.gradient-section h2,
.gradient-section h3,
.gradient-section h4 {
  color: #ffffff;
}

.info-card,
.quality-card,
.about-card,
.category-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s ease;
}

.content-section .info-card,
.content-section .quality-card,
.content-section .about-card {
  background: #f8f9fa;
}

.info-card:hover,
.quality-card:hover,
.about-card:hover,
.category-card:hover {
  transform: translateY(-5px);
}

.category-card {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-card img {
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #0056b3;
  margin-bottom: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-item h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-header {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

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

.products-section {
  padding: 2rem 0 4rem;
}

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

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

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

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

.product-content h3 {
  color: #0056b3;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: #6c757d;
  font-style: italic;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.cta-section {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  color: #ffffff;
  padding: 4rem 0;
  margin: 4rem 0 0;
}

.cta-section h2 {
  color: #ffffff;
}

.main-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.main-footer h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  color: #0056b3;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-item a {
  color: #0056b3;
  text-decoration: none;
}

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

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

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

.form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

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

.policy-content h2 {
  color: #0056b3;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.policy-content h3 {
  color: #004085;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.disclaimer-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-box h3,
.disclaimer-box h2 {
  color: #856404;
  margin-top: 0;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

.quality-section {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

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

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

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

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

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

  .hero-image,
  .hero-image img {
    min-height: 400px;
    height: 400px;
  }

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

  .content-section,
  .gradient-section {
    padding: 2rem 0;
  }

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

@media (max-width: 576px) {
  .hero-image,
  .hero-image img {
    min-height: 350px;
    height: 350px;
  }

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