/* --- Base Structural Styling (Shared Across All Languages) --- */
.polices-wrapper {
  line-height: 1.8;
  color: #4a5565;
  font-family: "Almarai", sans-serif;
}

.polices-wrapper h3 {
  color: #2b2b2e;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.polices-wrapper p {
  margin-bottom: 15px;
  font-size: 1.15rem;
  opacity: 0.85;
}

.polices-wrapper ul {
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.polices-wrapper ul li {
  position: relative;
  margin-bottom: 10px;
}

.polices-wrapper ul li::before {
  content: "\2022";
  color: #1ecad3;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 0;
}

.polices-wrapper .contact-box {
  background-color: #efeeed;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  border: 1px dashed #1ecad3;
  color: #2b2b2e;
  text-align: center;
}

.polices-wrapper .contact-box strong {
  color: #1ecad3;
}


/* --- RIGHT-TO-LEFT DIRECTIONS (Arabic / RTL) --- */
[dir="rtl"] .polices-wrapper {
  text-align: right;
}

[dir="rtl"] .polices-wrapper h3 {
  padding-right: 12px;
  padding-left: 0;
  border-right: 4px solid #1ecad3;
  border-left: none;
}

[dir="rtl"] .polices-wrapper ul {
  padding-right: 25px;
  padding-left: 0;
}

[dir="rtl"] .polices-wrapper ul li {
  padding-right: 20px;
  padding-left: 0;
}

[dir="rtl"] .polices-wrapper ul li::before {
  right: 0;
  left: auto;
}


/* --- LEFT-TO-RIGHT DIRECTIONS (English, Turkish / LTR) --- */
[dir="ltr"] .polices-wrapper,
html:not([dir="rtl"]) .polices-wrapper {
  text-align: left;
}

[dir="ltr"] .polices-wrapper h3,
html:not([dir="rtl"]) .polices-wrapper h3 {
  padding-left: 12px;
  padding-right: 0;
  border-left: 4px solid #1ecad3;
  border-right: none;
}

[dir="ltr"] .polices-wrapper ul,
html:not([dir="rtl"]) .polices-wrapper ul {
  padding-left: 25px;
  padding-right: 0;
}

[dir="ltr"] .polices-wrapper ul li,
html:not([dir="rtl"]) .polices-wrapper ul li {
  padding-left: 20px;
  padding-right: 0;
}

[dir="ltr"] .polices-wrapper ul li::before,
html:not([dir="rtl"]) .polices-wrapper ul li::before {
  left: 0;
  right: auto;
}