:root {
  --primary: #283593;
  --accent: #f9a825;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #fff;
}
.hero-section {
  background: linear-gradient(135deg, #283593 0%, #f9a825 100%);
  color: #fff;
  padding: 60px 0 40px;
}
.hero-section h1 {
  font-size: 2.4rem;
  font-weight: 800;
}
.hero-section p {
  font-size: 1.15rem;
  opacity: 0.92;
}
.section-title {
  color: #283593;
  font-weight: 700;
  border-left: 5px solid #f9a825;
  padding-left: 14px;
  margin-bottom: 1.2rem;
}
.card-service {
  border: none;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform .2s, box-shadow .2s;
}
.card-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.btn-primary-custom {
  background: #283593;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-primary-custom:hover {
  background: #f9a825;
  color: #fff;
}
.btn-accent {
  background: #f9a825;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-accent:hover {
  background: #283593;
  color: #fff;
}
.timeline-item {
  border-left: 4px solid #283593;
  padding-left: 20px;
  margin-bottom: 24px;
  position: relative;
}
.timeline-item::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #f9a825;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 4px;
}
.fact-panel {
  background: linear-gradient(135deg, #28359318, #f9a82518);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #f9a825;
}
.related-links {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px;
  margin-top: 30px;
}
.related-links h5 {
  color: #283593;
  font-weight: 700;
}
table.table th {
  background: #283593;
  color: #fff;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #283593;
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner button {
  background: #f9a825;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
}
.badge-accent {
  background: #f9a825;
  color: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.85em;
  font-weight: 600;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.checklist-item .check-icon {
  color: #f9a825;
  font-size: 1.2em;
  flex-shrink: 0;
  margin-top: 2px;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: #283593;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
details[open] summary {
  color: #f9a825;
}
details p, details ul {
  padding: 10px 0 6px 16px;
}
.review-card {
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 24px;
  background: #fff;
  border-top: 4px solid #f9a825;
}
.stars {
  color: #f9a825;
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .hero-section h1 { font-size: 1.7rem; }
}
