.elementor-3 .elementor-element.elementor-element-542a99da{--display:flex;}/* Start custom CSS */.privacy-section {
  padding: 50px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(208,148,27,0.25);
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

/* subtle gold gradient line at top */
.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #D0941B, #FFD27A, #C76B00);
  animation: borderGlow 6s linear infinite;
}

/* heading */
.privacy-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #C76B00;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* text box styling */
.privacy-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  background: #fffaf2;
  border-left: 4px solid #D0941B;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(208,148,27,0.1);
}

/* subtle animated border shimmer */
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}/* End custom CSS */