.cc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #001C44;
  border-top: 1px solid #1F5FE8;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.cc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4.3%, 80px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Calibri', 'Carlito', -apple-system, 'Segoe UI', Arial, sans-serif;
}
.cc-text {
  color: #DCE6FB;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  flex: 1 1 420px;
}
.cc-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.cc-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cc-btn {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 10px;
  padding: 11px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  min-width: 110px;
}
.cc-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #4C6FB0;
}
.cc-btn-secondary:hover {
  border-color: #fff;
}
.cc-btn-primary {
  background: #1F5FE8;
  color: #fff;
}
.cc-btn-primary:hover {
  background: #3C74EE;
}
.cc-btn:focus-visible {
  outline: 2px solid #92D050;
  outline-offset: 2px;
}
body.cc-bar-visible {
  padding-bottom: 0;
}
@media (max-width: 640px) {
  .cc-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cc-actions {
    justify-content: stretch;
  }
  .cc-btn {
    flex: 1 1 auto;
  }
}
