body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  padding-top: 80px;
}
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navbar-brand {
  font-weight: 700;
  color: #F57C00 !important;
  font-size: 1.5rem;
}
.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #F57C00 !important;
}
.hero-block {
  background: linear-gradient(135deg, #F57C00 0%, #FF9800 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero-block h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-block p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.hero-block img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.section {
  padding: 80px 0;
}
.section-alt {
  background: #f8f9fa;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F57C00;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #555;
}
.content-img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}
.card-title {
  color: #F57C00;
  font-weight: 600;
}
.btn-primary {
  background: #F57C00;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #E65100;
}
.footer {
  background: #333;
  color: #fff;
  padding: 50px 0 20px;
}
.footer h5 {
  color: #F57C00;
  margin-bottom: 20px;
}
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #F57C00;
}
.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
}
.disclaimer-box {
  background: #fff3e0;
  border-left: 4px solid #F57C00;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner .btn {
  margin: 5px;
}
@media (max-width: 768px) {
  .hero-block h1 {
    font-size: 2rem;
  }
  .section {
    padding: 50px 0;
  }
}
