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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

.accent-color {
  color: #FBC02D;
}

.bg-accent {
  background-color: #FBC02D;
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FBC02D !important;
  transition: opacity 0.3s;
}

.navbar-brand:hover {
  opacity: 0.8;
}

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

.nav-link:hover {
  color: #FBC02D !important;
}

main {
  margin-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, #FBC02D 0%, #F9A825 100%);
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-top: 2rem;
}

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

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.content-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.content-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.content-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.content-image:hover {
  transform: scale(1.02);
}

.bg-light-section {
  background: #f8f9fa;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 2rem;
  height: 100%;
}

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

.product-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  color: #FBC02D;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-box {
  background: #fff;
  border-left: 5px solid #FBC02D;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box h3 {
  color: #FBC02D;
  margin-bottom: 1rem;
}

.btn-custom {
  background: #FBC02D;
  color: #333;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background: #F9A825;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251,192,45,0.3);
  text-decoration: none;
}

.disclaimer-section {
  background: #f8f9fa;
  border: 2px solid #FBC02D;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-section h3 {
  color: #FBC02D;
  margin-bottom: 1rem;
}

footer {
  background: #333;
  color: #fff;
  padding: 3rem 0 1rem;
}

footer h5 {
  color: #FBC02D;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

footer a:hover {
  color: #FBC02D;
}

footer p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  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-bottom: 0;
}

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

.contact-form {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  border: 2px solid #ddd;
  padding: 12px;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: #FBC02D;
  box-shadow: 0 0 0 0.2rem rgba(251,192,45,0.25);
}

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.list-styled li:before {
  content: "→";
  color: #FBC02D;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .content-section h2 {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 50px 0;
  }
  
  .nav-link {
    margin-left: 0;
  }
}
