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

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

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #3A9BDC;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #2d7db3;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3A9BDC;
}

.hero-section {
  margin-top: 56px;
  min-height: 600px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3A9BDC;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-section ul li {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.8;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 20px 0;
}

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

.btn-primary:hover {
  background-color: #2d7db3;
  border-color: #2d7db3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58,155,220,0.3);
}

.disclaimer-box {
  background-color: #f8f9fa;
  border-left: 4px solid #3A9BDC;
  padding: 30px;
  margin: 40px 0;
  border-radius: 5px;
}

.disclaimer-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.disclaimer-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

footer p, footer a {
  font-size: 14px;
  color: #bdc3c7;
  line-height: 1.8;
}

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

footer a:hover {
  color: #3A9BDC;
}

footer ul {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

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

.contact-form .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 16px;
}

.contact-form .form-control:focus {
  border-color: #3A9BDC;
  box-shadow: 0 0 0 0.2rem rgba(58,155,220,0.25);
}

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

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

.cookie-banner p {
  margin-bottom: 15px;
  font-size: 14px;
}

.cookie-banner .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.direct-message {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  margin: 30px 0;
  font-weight: 600;
  color: #856404;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .content-section h2 {
    font-size: 28px;
  }
  
  .content-section {
    padding: 40px 0;
  }
  
  .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
