/* Disclaimer Popup */
.disclaimer_popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup_content {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  text-align: center;
  border-radius: 8px;
}

.popup_content p {
  margin-bottom: 20px;
}

.popup_accept {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

        body, html {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .blog_section {
            width: 100%;
            margin: 0;
            padding: 0;
        }