/* Cookie consent banner */
#cw-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2F3C4F;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-family: 'Space Mono', monospace;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}
#cw-consent-banner p {
  margin: 0;
  line-height: 1.6;
}
#cw-consent-banner a {
  color: #FF9000;
  text-decoration: none;
}
#cw-consent-banner a:hover {
  text-decoration: underline;
}
.cw-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cw-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  border-radius: 3px;
  transition: 0.2s;
}
#cw-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
#cw-accept {
  background: #FF9000;
  border: 1px solid #FF9000;
  color: #fff;
  padding: 8px 18px;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  border-radius: 3px;
  transition: 0.2s;
}
#cw-accept:hover {
  background: #e07d00;
  border-color: #e07d00;
}
@media (max-width: 600px) {
  #cw-consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Cookie policy table */
.cookie-table,
.cookie-table th,
.cookie-table td {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  background-color: transparent;
}

/* Equal-height card rows */
.row-equal-height {
  display: flex;
  flex-wrap: wrap;
}
.row-equal-height > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.row-equal-height .fh5co-card {
  flex: 1;
}
