/* Refund Policy Styles - Temple of Herbs */
.privacy-policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fafafa;
}

.privacy-policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2d5016 0%, #4caf50 100%);
  border-radius: 15px;
  color: white;
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.privacy-policy-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.effective-date {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.95;
}

.company-info {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.privacy-policy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-section {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8f5e8;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.policy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  border-radius: 15px 15px 0 0;
}

.policy-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e8f5e8;
  position: relative;
}

.policy-section h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #4caf50;
}

.policy-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d5016;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #4caf50;
}

.policy-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a5568;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.policy-section p {
  margin-bottom: 1.2rem;
  color: #4a5568;
  font-size: 1.6rem;
  text-align: justify;
  line-height: 1.7;
}

.policy-section ul {
  margin: 1.4rem 0;
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.8rem;
  color: #4a5568;
  font-size: 1.6rem;
  line-height: 1.7;
}

.policy-section ol {
  margin: 1.2rem 0;
  padding-left: 2rem;
}

.policy-section ol li {
  margin-bottom: 0.8rem;
  color: #4a5568;
  font-size: 1.6rem;
  line-height: 1.7;
}

.policy-section li::marker {
  color: #4caf50;
  font-weight: bold;
}

.contact-info {
  background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem 0;
  border: 2px solid #d4edda;
  box-shadow: inset 0 2px 4px rgba(76, 175, 80, 0.1);
}

.contact-info h3 {
  color: #2d5016;
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  border: none;
  padding: 0;
}

.contact-info p {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

.contact-info strong {
  color: #2d5016;
  font-weight: 600;
}

.contact-info ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: none;
}

.contact-info li {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  position: relative;
}

.contact-info li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

.effective-date-footer {
  text-align: center;
  background: linear-gradient(135deg, #2d5016 0%, #4caf50 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.effective-date-footer p {
  margin: 0.8rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

/* Links */
a {
  color: #2d5016;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 1.6rem;
}

a:hover {
  color: #4caf50;
  border-bottom-color: #4caf50;
  transform: translateY(-1px);
}

a[target="_blank"]::after {
  content: " ↗";
  font-size: 0.8em;
  opacity: 0.7;
}

/* Special styling for lists with strong elements */
li strong {
  color: #2d5016;
  font-weight: 600;
  font-size: 1.6rem;
}

p strong {
  color: #2d5016;
  font-weight: 600;
  font-size: 1.65rem;
}

/* Enhanced readability for long content */
.policy-section p + ul,
.policy-section ul + p {
  margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-policy-container {
    padding: 1.5rem;
  }

  .policy-section {
    padding: 2rem;
  }

  .privacy-policy-header h1 {
    font-size: 2.8rem;
  }

  .policy-section h2 {
    font-size: 2.2rem;
  }

  .policy-section h3 {
    font-size: 1.6rem;
  }

  .policy-section h4 {
    font-size: 1.6rem;
  }

  .policy-section p {
    font-size: 1.6rem;
  }

  .policy-section li {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .privacy-policy-container {
    padding: 1rem;
  }

  .privacy-policy-header h1 {
    font-size: 2.4rem;
  }

  .effective-date {
    font-size: 1.6rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 2rem;
  }

  .policy-section h3 {
    font-size: 1.8rem;
  }

  .policy-section h4 {
    font-size: 1.6rem;
  }

  .policy-section p {
    font-size: 1.6rem;
  }

  .policy-section li {
    font-size: 1.6rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info p {
    font-size: 1.6rem;
  }

  .contact-info li {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy-container {
    padding: 0.5rem;
  }

  .privacy-policy-header {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .privacy-policy-header h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .effective-date {
    font-size: 1.6rem;
  }

  .policy-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.8rem;
  }

  .policy-section h3 {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }

  .policy-section h4 {
    font-size: 1.6rem;
  }

  .policy-section p {
    font-size: 1.6rem;
  }

  .policy-section li {
    font-size: 1.6rem;
  }

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

  .contact-info {
    padding: 1rem;
  }

  .contact-info p {
    font-size: 1.6rem;
  }

  .contact-info li {
    font-size: 1.6rem;
  }

  .effective-date-footer p {
    font-size: 1.6rem;
  }
}
