/* Privacy Policy Styling */

.rs-privacy-policy-area {
  padding: 60px 0;
  background: #f8f9fa;
}

.privacy-policy-wrapper {
  width: 100%;
}

.privacy-policy-content {
  background: #ffffff;
  padding: 40px 60px;
  border-radius: 8px;
  line-height: 1.8;
  color: #333333;
  font-size: 15px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Paragraphs */
.privacy-policy-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.privacy-policy-content p:last-child {
  margin-bottom: 0;
}

/* Headings */
.privacy-policy-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2rem 0 1rem 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-policy-content h3 strong {
  font-weight: 700;
}

.privacy-policy-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 1.5rem 0 0.8rem 0;
  line-height: 1.4;
}

.privacy-policy-content h4 strong {
  font-weight: 600;
}

/* Lists */
.privacy-policy-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}

.privacy-policy-content ul li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.privacy-policy-content ul li p {
  margin-bottom: 0;
  display: inline;
}

/* Links */
.privacy-policy-content a {
  color: #84569f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
  color: #84569f;
  text-decoration: underline;
}

/* Strong/Bold text */
.privacy-policy-content strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Horizontal rules */
.privacy-policy-content hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* Loading and error states */
.privacy-loading,
.privacy-error {
  text-align: center;
  padding: 60px 40px;
  background: #f5f5f5;
  border-radius: 8px;
  color: #666;
  font-size: 16px;
}

.privacy-loading p,
.privacy-error p {
  margin: 0;
}

.privacy-error {
  color: #d32f2f;
}

/* Responsive design */
@media (max-width: 768px) {
  .privacy-policy-content {
    padding: 30px 20px;
    font-size: 14px;
  }

  .privacy-policy-content h3 {
    font-size: 19px;
    margin: 1.8rem 0 0.8rem 0;
  }

  .privacy-policy-content h4 {
    font-size: 16px;
    margin: 1.2rem 0 0.6rem 0;
  }

  .privacy-policy-content p {
    margin-bottom: 1rem;
    text-align: left;
  }

  .privacy-policy-content ul {
    padding-left: 1.5rem;
  }

  .privacy-policy-content ul li {
    margin-bottom: 0.6rem;
  }

  .privacy-loading,
  .privacy-error {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .privacy-policy-content {
    padding: 20px 15px;
    font-size: 13px;
  }

  .privacy-policy-content h3 {
    font-size: 17px;
    margin: 1.5rem 0 0.6rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-policy-content h4 {
    font-size: 14px;
  }

  .privacy-policy-content p {
    margin-bottom: 0.8rem;
  }

  .privacy-policy-content hr {
    margin: 1.5rem 0;
  }
}
