* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2c3e50;
  background: linear-gradient(135deg, #e6f0fa 0%, #d1e3f6 100%);
  min-height: 100vh;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-weight: 600;
  color: #3498db;
  font-size: 1.5rem;
}

.navbar-brand:hover {
  color: #2980b9;
}

.nav-link {
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3498db;
}

.hero-section {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin: 2rem 0;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-content {
  padding: 3rem 2rem;
}

.hero-content h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #555;
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-section h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.5rem;
}

.content-section h3 {
  color: #34495e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  color: #555;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-section ul {
  color: #555;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.75rem;
}

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

.table {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
}

.table thead th {
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table tbody tr {
  transition: background-color 0.3s ease;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

.table tbody td {
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #f39c12;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box p {
  color: #856404;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 500;
}

.cta-box {
  background: linear-gradient(135deg, #e6f0fa 0%, #d1e3f6 100%);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h3 {
  color: #2c3e50;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #555;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.faq-item h3 {
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #555;
  margin-bottom: 0;
}

footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h5 {
  color: #3498db;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

footer a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: #3498db;
}

footer p {
  color: #bdc3c7;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: #95a5a6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  border-top: 3px solid #3498db;
}

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

.cookie-banner p {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-accept {
  background: #27ae60;
  color: #ffffff;
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: #229954;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  outline: none;
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .cookie-banner {
    padding: 1rem;
  }
  
  footer {
    text-align: center;
  }
}
