:root {
  --accent-color: #2A6F97;
  --accent-dark: #1e4f6b;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
}
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar {
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
}
.navbar-brand:hover {
  color: var(--accent-dark);
  text-decoration: none;
}
.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 300px);
}
.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 3px solid var(--accent-color);
}
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-section p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.content-section {
  padding: 3rem 0;
}
.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
}
.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.content-section ul,
.content-section ol {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.content-section li {
  margin-bottom: 0.75rem;
}
.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 1.5rem 0;
}
.content-image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.content-image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.disclaimer-box {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.disclaimer-box h3 {
  color: #856404;
  margin-top: 0;
}
.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}
.info-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}
.info-box h3 {
  color: var(--accent-color);
  margin-top: 0;
}
.faq-section {
  background-color: var(--bg-light);
  padding: 3rem 0;
}
.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.faq-item h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.faq-item p {
  margin-bottom: 0.5rem;
}
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
  text-decoration: none;
}
.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(42, 111, 151, 0.1);
}
.site-footer {
  background-color: var(--text-primary);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.site-footer h5 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer p,
.site-footer li {
  color: #dee2e6;
  font-size: 0.95rem;
  line-height: 1.8;
}
.site-footer a {
  color: #dee2e6;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: #adb5bd;
  font-size: 0.9rem;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-primary);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner p {
  margin-bottom: 1rem;
  color: #dee2e6;
}
.cookie-banner .btn {
  margin-right: 0.5rem;
}
.table-responsive {
  margin: 2rem 0;
}
.table {
  background-color: #ffffff;
}
.table thead th {
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  border: none;
}
.table tbody tr:hover {
  background-color: var(--bg-light);
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1.1rem;
  }
  .hero-image {
    height: 250px;
  }
  .content-section h2 {
    font-size: 1.75rem;
  }
  .content-section h3 {
    font-size: 1.3rem;
  }
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 1rem auto;
    display: block;
  }
  .main-content {
    margin-top: 70px;
  }
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
