#cookie-consent-banner .container {
  display: flex;
  max-width: 731px;
  width: 100%;
  padding: 24px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  background: #1B2C3D;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 24px 0 rgba(27, 44, 61, 0.12);
  margin: 0 auto;
  flex-direction: row;
}

#cookie-consent-banner .fw-medium {
  font-size: 1rem;
  line-height: 1.4;
}

#cookie-consent-banner button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  min-width: 225px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.08px;
  color: #1b2c3d;
  box-shadow: none;
  border: none;
  transition: background 0.2s;
}

#cookie-consent-banner button:hover,
#cookie-consent-banner button:focus {
  background: #f5f5f5;
  color: #1b2c3d;
  box-shadow: none;
}

#cookie-consent-banner p {
  text-align: start;
  margin: 0;
}

#cookie-consent-banner button .cookie-consent-btn-text {
  color: #1b2c3d;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.08px;
}

@media (max-width: 1000px) {
  #cookie-consent-banner .container {
    max-width: 730px;
  }
}

@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 0px 20px;
  }

  #cookie-consent-banner p {
    text-align: center;
  }


  #cookie-consent-banner .container {
    max-width: 708px;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px;
  }

  #cookie-consent-banner .mb-md-0 {
    margin-bottom: 1rem !important;
  }

  #cookie-consent-banner button {
    margin-left: 0 !important;
  }
}

@media (max-width: 480px) {
  #cookie-consent-banner .container {
    max-width: 380px;
    padding: 1.5rem !important;
  }

  #cookie-consent-banner .fw-medium {
    font-size: 0.95rem;
    text-align: center;
  }

  #cookie-consent-banner .d-flex.align-items-center {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100%;
  }

  #cookie-consent-banner button {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  #cookie-consent-banner .container {
    max-width: 320px;
    padding: 1rem !important;
  }

  #cookie-consent-banner .fw-medium {
    font-size: 0.9rem;
  }
}