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

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4A90E2;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav-menu li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #4A90E2;
}

.hero {
  margin-top: 70px;
  min-height: 500px;
  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: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #4A90E2;
  font-weight: 600;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.content-image-left {
  float: left;
  margin: 0 2rem 1rem 0;
  max-width: 400px;
}

.content-image-right {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 400px;
}

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

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #4A90E2;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #4A90E2;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #357ABD;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #4A90E2;
  color: #4A90E2;
}

.btn-outline:hover {
  background: #4A90E2;
  color: #fff;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #4A90E2;
}

.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1rem;
}

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #4A90E2;
}

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

.footer a:hover {
  color: #4A90E2;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 1001;
  display: none;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

.disclaimer-box h3 {
  color: #856404;
  margin-bottom: 0.5rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info h3 {
  color: #4A90E2;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #555;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 0 0 1rem 0;
    max-width: 100%;
  }
  
  .cookie-banner-content {
    flex-direction: column;
  }
}
