body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  margin: 0;
  padding: 0;
}
h1, h2, h3 {
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
a {
  color: #4682B4;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #3a6d99;
}
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #4682B4;
}
.navbar-brand:hover {
  color: #3a6d99;
}
.nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #4682B4;
}
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: #4682B4;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #3a6d99;
}
.content-section {
  padding: 4rem 0;
}
.content-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.footer {
  background: #f8f9fa;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.footer-links li {
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-contact {
  margin-bottom: 2rem;
}
.footer-disclaimer {
  background: #e9ecef;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #555;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.cookie-banner button {
  background: #4682B4;
  border: none;
  color: #fff;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.cookie-banner button:hover {
  background: #3a6d99;
}
.faq-item {
  margin-bottom: 2rem;
}
.faq-item h3 {
  font-size: 1.25rem;
  color: #4682B4;
  margin-bottom: 0.5rem;
}
.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.disclaimer-box {
  background: #f8f9fa;
  border-left: 4px solid #4682B4;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}
.disclaimer-box h3 {
  font-size: 1.25rem;
  color: #4682B4;
  margin-bottom: 1rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #4682B4;
}
.policy-content p {
  margin-bottom: 1rem;
}
.policy-content ul {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .content-section {
    padding: 2rem 0;
  }
}
