.elementor-13 .elementor-element.elementor-element-c421f81{--display:flex;--min-height:100px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-c421f81:not(.elementor-motion-effects-element-type-background), .elementor-13 .elementor-element.elementor-element-c421f81 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-13 .elementor-element.elementor-element-a4ac7e7{--display:flex;}/* Start custom CSS */:root {
  --brand-red: #F80B0B;
  --brand-blue: #005EFF;
  --dark: #0b1020;
  --muted: #5c6a88;
  --bg: #f8faff;
  --white: #ffffff;
}

/* Page wrapper */
.sip-privacy {
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  padding: 40px 0 60px;
  line-height: 1.65;
}

/* Container */
.sip-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero section */
.sip-hero {
  background: linear-gradient(135deg, rgba(0,94,255,0.1), rgba(248,11,11,0.1));
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.sip-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.sip-hero p {
  font-size: 17px;
  color: var(--dark);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Navigation */
.sip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0 35px;
}

.sip-nav a {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sip-nav a:hover {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  color: #fff;
}

/* Sections / Cards */
.sip-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.sip-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sip-card h2::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 4px 8px rgba(0,94,255,0.25);
}

.sip-card p {
  font-size: 16px;
  color: var(--dark);
}

/* Utilities */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }/* End custom CSS */