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

html, body {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  color: #111111;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  color: #111111;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #111111;
}

ul, ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

li {
  margin-bottom: 0.75rem;
}

a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: #e8f5e9;
}

header.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

h1.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

h1.logo a {
  border: none;
  color: #111111;
}

h1.logo a:hover {
  border: none;
}

nav.nav-main {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  border: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  text-transform: capitalize;
}

.nav-link:hover {
  border-bottom-color: #111111;
}

main {
  min-height: calc(100vh - 200px);
}

section {
  padding: 3rem 0;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}

.hero-image {
  background-color: #fdfdfd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background-color: #ffffff;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-reference {
  display: inline-block;
  padding: 12px 32px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #111111;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 0;
  width: fit-content;
}

.btn-reference:hover {
  background-color: #e8f5e9;
  border-color: #e8f5e9;
}

.reference-block {
  background-color: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.reference-block.bg-light-sage {
  background-color: #e8f5e9;
}

.reference-block img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .reference-block img {
    margin-bottom: 2rem;
  }
  
  .reference-block .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-content {
    padding: 2rem;
  }

  nav.nav-main {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 12px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .reference-block {
    padding: 2.5rem 0;
  }
}

.definitions-block {
  background-color: #ffffff;
  padding: 4rem 0;
}

.definition-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 0;
}

.definition-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
}

.faq-block {
  background-color: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid #e0e0e0;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 18px;
  margin-top: 0;
}

.reading-block {
  background-color: #e8f5e9;
  padding: 4rem 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #111111;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0;
  text-decoration: none;
}

.cta-link:hover {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

.page-hero {
  background-color: #ffffff;
  padding: 4rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  font-size: 18px;
  color: #666666;
  font-weight: 300;
  margin-bottom: 0;
}

footer.footer {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  font-size: 14px;
  color: #666666;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-links a:hover {
  border-bottom-color: #666666;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  color: #999999;
}

footer h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

.consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.consent-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.consent-content p {
  font-size: 14px;
  margin-bottom: 1rem;
  color: #666666;
}

.consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-accept, .btn-reject {
  padding: 8px 16px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.btn-accept {
  background-color: #111111;
  color: #ffffff;
}

.btn-accept:hover {
  background-color: #333333;
}

.btn-reject {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #111111;
}

.btn-reject:hover {
  background-color: #f5f5f5;
}

.btn-more-info {
  padding: 8px 16px;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  color: #111111;
  border-radius: 0;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-more-info:hover {
  border-color: #111111;
}

.contact-form {
  background-color: #fdfdfd;
  padding: 2rem;
  border: 1px solid #e0e0e0;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #111111;
  border-radius: 0;
  padding: 10px 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
}

.form-control:focus {
  background-color: #ffffff;
  border-color: #111111;
  color: #111111;
  box-shadow: none;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0.5rem;
  color: #111111;
}

.form-check-label {
  font-size: 14px;
  color: #666666;
}

.thank-you-message {
  background-color: #fdfdfd;
  padding: 3rem;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.thank-you-message h2 {
  margin-top: 0;
}

.text-muted {
  color: #999999 !important;
  font-size: 14px;
}

.text-center {
  text-align: center;
}

.ps-4 {
  padding-left: 2rem !important;
}

.pe-4 {
  padding-right: 2rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (max-width: 768px) {
  .consent-banner {
    padding: 1rem;
  }

  .consent-buttons {
    flex-direction: column;
  }

  .btn-accept, .btn-reject, .btn-more-info {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .thank-you-message {
    padding: 1.5rem;
  }
}
