:root {
  --primary-dark: #1A3E5C;
  --accent-gold: #F2C144;
  --accent-light: #84A3B4;
  --bg-light: #E6F0F5;
  --white: #FFFFFF;
  --text-dark: #1A3E5C;
}

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

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

h3 {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid #E0E0E0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-dark) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.nav-link {
  color: var(--primary-dark) !important;
  font-weight: 500;
  margin-left: 25px;
  position: relative;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
}

section {
  padding: 80px 0;
  width: 100%;
}

.hero-section {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-section h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}

.content-section {
  background-color: var(--white);
}

.content-section.alt {
  background-color: var(--bg-light);
}

.container-wide {
  max-width: 90%;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.card p {
  color: #555;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
  border: 2px solid var(--primary-dark);
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--accent-gold);
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

.disclaimer-block {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-gold);
  padding: 30px;
  margin: 60px 0;
  border-radius: 4px;
}

.disclaimer-block p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}

.faq-item h3 {
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-dark);
}

.faq-item h3::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
}

.faq-item h3.active::after {
  content: '−';
}

.faq-content {
  display: none;
  padding-top: 15px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.faq-content.active {
  display: block;
}

.glossary-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.glossary-term {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 6px;
}

.glossary-term dt {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.glossary-term dd {
  color: #555;
  margin: 0;
  font-size: 15px;
}

footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-message {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cookie-accept {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.cookie-accept:hover {
  opacity: 0.9;
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  text-decoration: none;
  padding: 10px 20px;
}

.cookie-learn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(242, 193, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-dark);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: var(--accent-light);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--accent-gold);
}

.timeline-item {
  margin-bottom: 50px;
  width: 48%;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 52%;
}

.timeline-item-content {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 6px;
}

.list-inline {
  list-style: none;
  margin: 20px 0;
}

.list-inline li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.list-inline li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 20px;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .glossary-list {
    grid-template-columns: 1fr;
  }

  .hero-section {
    height: 300px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .nav-link {
    margin-left: 15px;
    font-size: 15px;
  }

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    text-align: left;
    padding-left: 60px;
  }

  .contact-form {
    padding: 20px;
  }
}
