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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

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

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #1E90FF;
  text-decoration: none;
}

header nav a {
  margin-left: 30px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: #1E90FF;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

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

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

.section {
  padding: 80px 0;
}

.section-alt {
  background: #f8f9fa;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

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

.btn-primary {
  background: #1E90FF;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1874CD;
  color: #fff;
  text-decoration: none;
}

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

.blog-card:hover {
  transform: translateY(-5px);
}

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

.blog-card a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: 500;
}

.blog-card a:hover {
  text-decoration: underline;
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
  color: #1E90FF;
  margin-bottom: 10px;
}

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

.disclaimer-box strong {
  color: #856404;
}

footer {
  background: #222;
  color: #fff;
  padding: 50px 0 20px;
}

footer h4 {
  color: #1E90FF;
  margin-bottom: 15px;
  font-size: 18px;
}

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

footer a:hover {
  color: #1E90FF;
}

footer .footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
  text-align: center;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  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: 0 0 15px 0;
}

.cookie-banner button {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.cookie-banner button:hover {
  background: #1874CD;
}

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

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.info-message {
  background: #e7f3ff;
  border-left: 4px solid #1E90FF;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
  font-size: 16px;
}

@media (max-width: 768px) {
  header nav {
    display: flex;
    flex-direction: column;
  }
  
  header nav a {
    margin: 5px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .section {
    padding: 50px 0;
  }
}
