:root {
  --primary-color: #7d8c6e;
  --primary-hover: #6a7a5c;
  --text-color: #333333;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.navbar {
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.navbar-brand:hover .brand-text {
  color: var(--primary-hover);
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-item.active .nav-link {
  color: var(--primary-color) !important;
}

.disclaimer-bar {
  background-color: var(--bg-light);
  padding: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.content-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.content-block:last-child {
  border-bottom: none;
}

.content-block.bg-light {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border: none;
}

.content-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rounded {
  border-radius: var(--radius) !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}

.form-control {
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(125, 140, 110, 0.25);
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--bg-light);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.footer h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer ul {
  padding-left: 0;
}

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

.footer a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer address {
  font-style: normal;
  color: var(--text-muted);
}

.footer hr {
  border-color: var(--border-color);
  margin: 2rem 0 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .content-block {
    padding: 1.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .footer {
    text-align: center;
  }

  .footer .col-md-4 {
    margin-bottom: 2rem;
  }

  .cookie-banner .row {
    text-align: center;
  }

  .cookie-banner .col-md-3 {
    margin-top: 1rem;
  }
}
