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

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

.navbar {
  padding: 1rem 0;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #d97642;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #2d2d2d;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #d97642;
}

.btn-contact {
  background-color: #d97642;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

.btn-contact:hover {
  background-color: #c2642f;
  color: white;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #d97642;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #c2642f;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

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

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

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.card-text {
  color: #666;
  font-size: 1rem;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.product-category {
  color: #d97642;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.product-description {
  color: #666;
  line-height: 1.7;
}

.footer {
  background-color: #2d2d2d;
}

.footer-heading {
  color: #d97642;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-copyright {
  color: #888;
  font-size: 0.9rem;
}

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

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

.cookie-text {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.form-control:focus {
  border-color: #d97642;
  box-shadow: 0 0 0 0.2rem rgba(217, 118, 66, 0.25);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fff5f0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.policy-content h2 {
  color: #2d2d2d;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: #2d2d2d;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

  .section-title {
    font-size: 1.75rem;
  }

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

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}
