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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  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-weight: 700;
  font-size: 24px;
  color: #FFA500 !important;
}

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

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

.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: 56px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

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

.btn-primary {
  background-color: #FFA500;
  border-color: #FFA500;
  padding: 12px 30px;
  font-size: 18px;
  transition: all 0.3s ease;
}

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

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

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

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

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
}

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

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

.footer a:hover {
  color: #FF8C00;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 8px;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #FFA500;
  padding: 20px;
  margin: 30px 0;
}

.blog-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-card h3 {
  color: #FFA500;
  margin-bottom: 15px;
}

.blog-card a {
  color: #FFA500;
  text-decoration: none;
  font-weight: 600;
}

.blog-card a:hover {
  color: #FF8C00;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

.btn-accept {
  background-color: #FFA500;
  border: none;
  color: #fff;
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-accept:hover {
  background-color: #FF8C00;
}

.form-control:focus {
  border-color: #FFA500;
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 22px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-accept {
    margin-top: 15px;
  }
}
