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

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

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

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #F57C00;
  text-decoration: none;
}

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

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

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

.main-content {
  margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(245,124,0,0.1) 0%, rgba(255,255,255,1) 100%);
  padding: 100px 0 80px;
  text-align: center;
}

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

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

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

.section {
  padding: 60px 0;
}

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

.section h3 {
  font-size: 28px;
  font-weight: 600;
  color: #F57C00;
  margin-bottom: 15px;
}

.section p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.section ul li {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.section ul li:before {
  content: "•";
  color: #F57C00;
  font-weight: bold;
  font-size: 24px;
  position: absolute;
  left: 0;
}

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

.card-custom {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-custom h3 {
  color: #F57C00;
  margin-bottom: 15px;
}

.card-custom p {
  color: #666;
  font-size: 16px;
}

.btn-custom {
  background-color: #F57C00;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover {
  background-color: #E65100;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  color: #F57C00;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer p, .footer a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.footer a:hover {
  color: #F57C00;
  text-decoration: none;
}

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

.footer ul li {
  margin-bottom: 8px;
}

.disclaimer-box {
  background-color: #FFF3E0;
  border-left: 4px solid #F57C00;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.disclaimer-box h4 {
  color: #F57C00;
  margin-bottom: 10px;
  font-size: 20px;
}

.disclaimer-box p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F57C00;
}

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

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

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

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

.bg-light-orange {
  background-color: #FFF3E0;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .section h2 {
    font-size: 28px;
  }

  .section h3 {
    font-size: 22px;
  }

  .section p {
    font-size: 16px;
  }

  .navbar-brand {
    font-size: 24px;
  }
}
