/* ─── PRIVACY POLICY SECTION STYLES ─── */
.privacy-section {
  width: 100%;
  background-color: var(--white);
  overflow: hidden;
}

.privacy-container {
  display: flex;
  min-height: calc(100vh - 56px);
  width: 100%;
}

/* Left Column - Image */
.privacy-image-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #f6f6f6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Column - Content */
.privacy-content-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-content-wrap {
  width: 100%;
  max-width: 600px;
}

.privacy-title {
  font-family: var(--font-outfit), sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #141414;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* Styling standard HTML tags output by WordPress editor */
.privacy-content-wrap p {
  font-family: var(--font-outfit), sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #141414;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.privacy-content-wrap h2,
.privacy-content-wrap h3 {
  font-family: var(--font-outfit), sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #141414;
  margin-top: 28px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.privacy-content-wrap ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-left: 10px;
}

.privacy-content-wrap li {
  position: relative;
  font-family: var(--font-outfit), sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #141414;
  padding-left: 15px;
}

.privacy-content-wrap li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #141414;
}

/* ─── RESPONSIVE LAYOUT ─── */
@media (max-width: 991px) {
  .privacy-container {
    flex-direction: column;
    min-height: auto;
  }
  
  .privacy-image-col,
  .privacy-content-col {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .privacy-image-col {
    height: 450px;
  }
  
  .privacy-content-col {
    padding: 60px 40px;
  }
}

@media (max-width: 767px) {
  .privacy-image-col {
    height: 350px;
  }
  
  .privacy-content-col {
    padding: 40px 24px;
  }
  
  .privacy-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .privacy-content-wrap p,
  .privacy-content-wrap li {
    font-size: 14px;
  }
  
  .privacy-content-wrap h2,
  .privacy-content-wrap h3 {
    font-size: 16px;
    margin-top: 20px;
  }
}
