.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #ffffff;
    color: #111111;
    border: 1px solid #dddddd;
    border-radius: 1rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    /* font-family: sans-serif; */
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-text {
    max-width: 760px;
}

.cookie-text p {
    margin: 0.4rem 0 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid #222;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    cursor: pointer;
}

.cookie-btn.primary {
    background: #111;
    color: #fff;
}

.cookie-btn.secondary {
    background: #fff;
    color: #111;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

.bg-blueBG {
    --tw-bg-opacity: 1;
    background-color: rgb(20 29 58 / var(--tw-bg-opacity, 1));
}

.footer-columns {
    row-gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-columns {
        row-gap: 0.25rem;
    }
}

.nav {
    background:
        linear-gradient(to right,
            rgb(255 255 255 / 0%),
            rgb(255 255 255 / 0%)),
        linear-gradient(to right,
            rgb(239 122 32 / 100%),
            rgb(239 122 32 / 100%));
    background-size: 100% 3px, 0 3px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.nav:hover {
    background-size: 0 3px, 100% 3px;
    color: rgb(239 122 32 / 100%);
}

html {
    scroll-behavior: smooth;
}

/* MOBILE MENU */

.mobileMenu {
    display: none;
}

.mobileMenu:target {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: white;
    z-index: 999;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


/* privacy window */
.privacy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-overlay.active {
  display: flex;
}

.privacy-modal {
  background: white;
  color: #111;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  font-family: sans-serif;
}

.privacy-modal h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.privacy-modal h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-modal p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.privacy-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}