@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://db.onlinewebfonts.com/c/000833a3a58fb083c44b9de42c2ff0a2?family=Gilroy-SemiBold');

.privacy-policy-module {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 650px;
  max-height: 344px;
  padding-left: 20px;
  background-color: #C5F223;
  z-index: 9999;
  display: none;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  flex-wrap: wrap;
  border-radius: 19px;
  overflow: hidden; /* Ensure children elements respect the border-radius */
}

.privacy-policy-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.privacy-policy-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-right: 0;
  justify-content: center;
  max-width: 300px;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 2%;
}

.privacy-policy-header {
  font-family: 'Gilroy-SemiBold', sans-serif;
  display: flex;
  align-items: center;
}

.privacy-policy-icon {
  width: 18px;
  height: auto;
  margin-right: 10px;
}

.privacy-policy-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000 !important;
}

.privacy-policy-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.privacy-policy-body {
  font-family: 'Inter', sans-serif;
  max-height: 150px;
  overflow-y: auto;
  margin-top: 10px;
  padding-right: 10px;
}

.privacy-policy-accept {
  font-family: 'Inter', sans-serif;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.privacy-policy-accept:hover {
  background-color: #333;
}

.privacy-policy-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure image does not overflow the container */
}

.privacy-policy-image img {
  max-width: 100%;
  max-height: 344px;
  height: auto;
  margin-left: 20px;
  border-radius: 0 19px 19px 0; /* Apply border-radius to the right side */
}

h3 {
 color: #000000 !important; 
  font-size: 20px !important;
}

/* @media (max-width: 850px) {
  .privacy-policy-module {
    flex-direction: column;
    max-height: 100%;
  }
  
  .privacy-policy-content {
    flex-direction: column;
  }
  
  .privacy-policy-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .privacy-policy-image img {
    max-height: 200px; /* Adjust for mobile */
  }
}
 */