* {
  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;
}

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

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1E90FF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1E90FF;
  text-decoration: none;
}

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

.hero-section::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: 2;
  max-width: 800px;
  padding: 20px;
}

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

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

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

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

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

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

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.img-fluid-custom {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.blog-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.faq-item p {
  font-size: 16px;
  color: #666;
}

.footer {
  background: #2c3e50;
  color: #fff;
  padding: 60px 0 30px;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

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

.footer ul li a:hover {
  color: #1E90FF;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.contact-info {
  font-size: 16px;
  line-height: 2;
}

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

.disclaimer-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #856404;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner button {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background: #1873CC;
}

.form-control {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

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

.policy-content {
  padding: 100px 0 60px;
}

.policy-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.policy-content ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 22px;
  }
  
  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section {
    padding: 50px 0;
  }
}
