/* Start custom CSS for column, class: .elementor-element-2c6c232 *//* ===== DPO Landing (Light Theme, scoped) ===== */
.dpo-landing{
  --primary:#0061A0;
  --primary-2:#0B79C2;
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#F5F8FB;
  --text:#0B1220;
  --muted:#445469;
  --line:#D9E2EC;
  --shadow:0 10px 30px rgba(16, 24, 40, 0.10);
  --radius:18px;
  --radius-sm:14px;

  background: linear-gradient(180deg, #ffffff 0%, #F7FAFD 60%, #ffffff 100%);
  color: var(--text);
  padding: 56px 16px;
}

.dpo-container{
  max-width: 1120px;
  margin: 0 auto;
}

/* Typography */
.dpo-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}
.dpo-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.dpo-h2{
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.dpo-h3{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
}
.dpo-text{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.dpo-micro{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

/* Hero layout */
.dpo-hero{
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}
@media (max-width: 980px){
  .dpo-hero{ grid-template-columns: 1fr; }
}

.dpo-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 97, 160, 0.08);
  border: 1px solid rgba(0, 97, 160, 0.18);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.dpo-hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

/* Buttons */
.dpo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
}
.dpo-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.12);
}
.dpo-btn--primary{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.dpo-btn--primary:hover{
  background: var(--primary-2);
  border-color: var(--primary-2);
}
.dpo-btn--ghost{
  background: #fff;
  color: var(--primary);
  border-color: rgba(0, 97, 160, 0.25);
}
.dpo-btn--ghost:hover{
  border-color: rgba(0, 97, 160, 0.45);
  box-shadow: 0 10px 22px rgba(0, 97, 160, 0.12);
}
.dpo-btn--full{ width: 100%; margin-top: 12px; }

/* Trust cards */
.dpo-trust{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px){
  .dpo-trust{ grid-template-columns: 1fr; }
}
.dpo-trust__item{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
.dpo-trust__label{
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2px;
}
.dpo-trust__hint{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Sticky right card (desktop only) */
.dpo-card{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 18px;
}
@media (max-width: 980px){
  .dpo-card{ position: relative; top: 0; }
}
.dpo-card__title{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
}
.dpo-card__divider{
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

/* Lists */
.dpo-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.dpo-list li{ margin: 6px 0; }

/* Nav pills */
.dpo-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  margin: 18px 0 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}
.dpo-nav a{
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.dpo-nav a:hover{
  color: var(--primary);
  border-color: rgba(0, 97, 160, 0.30);
  background: rgba(0, 97, 160, 0.06);
}

/* Sections */
.dpo-section{
  margin-top: 30px;
  padding-top: 6px;
}
.dpo-grid{
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.dpo-grid--3{ grid-template-columns: repeat(3, 1fr); }
.dpo-grid--2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){
  .dpo-grid--3, .dpo-grid--2{ grid-template-columns: 1fr; }
}

.dpo-feature,
.dpo-result{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 14px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}
.dpo-feature__title{
  font-weight: 950;
  color: var(--text);
  margin-bottom: 6px;
}
.dpo-feature__text{ color: var(--muted); line-height: 1.6; }

/* Notes / callouts */
.dpo-note{
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--primary);
  background: rgba(0, 97, 160, 0.06);
  border-radius: var(--radius);
  color: var(--text);
}
.dpo-callout{
  border: 1px solid rgba(0, 97, 160, 0.22);
  background: rgba(0, 97, 160, 0.06);
  border-radius: var(--radius);
  padding: 16px 16px;
  color: var(--text);
  line-height: 1.7;
  box-shadow: 0 8px 22px rgba(0, 97, 160, 0.08);
}

/* Accordion (better feel) */
.dpo-accordion{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.dpo-acc__btn{
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 14px 14px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  transition: background .12s ease;
}
.dpo-acc__btn:hover{
  background: rgba(0, 97, 160, 0.04);
}
.dpo-acc__btn[aria-expanded="true"]{
  background: rgba(0, 97, 160, 0.06);
}
.dpo-acc__icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 97, 160, 0.22);
  color: var(--primary);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.dpo-acc__panel{
  padding: 0 14px 14px;
  border-bottom: 1px solid var(--line);
}
.dpo-acc__panel:last-child{ border-bottom: 0; }

/* Timeline */
.dpo-timeline{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.dpo-step{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}
.dpo-step__num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: #fff;
  background: var(--primary);
}
.dpo-step__title{
  font-weight: 950;
  color: var(--text);
  margin-bottom: 4px;
}
.dpo-step__text{ color: var(--muted); line-height: 1.65; }

/* Apply section */
.dpo-apply{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 980px){
  .dpo-apply{ grid-template-columns: 1fr; }
}
.dpo-apply__left,
.dpo-apply__right{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.dpo-mini{
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid var(--line);
}
.dpo-mini__title{
  font-weight: 950;
  margin-bottom: 8px;
  color: var(--text);
}

/* Links inside contacts */
.dpo-contacts{
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}
.dpo-contacts a{
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 97, 160, 0.45);
}
.dpo-contacts a:hover{
  border-bottom-color: rgba(0, 97, 160, 0.85);
}

/* Optional: nicer anchor offset if WP has sticky header */
.dpo-section { scroll-margin-top: 90px; }/* End custom CSS */