/* Policies Page */
.policies-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.policies-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ff8c69;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.policy-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255, 154, 118, 0.15);
}

.policy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #5ebdb8;
}

.policy-updated {
  font-size: 12px;
  color: #5a9997;
  font-style: italic;
  margin-bottom: 15px;
}

.policy-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #5ebdb8;
  margin-top: 15px;
  margin-bottom: 8px;
}

.policy-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a7b78;
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.policy-section li {
  font-size: 14px;
  color: #4a7b78;
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
}

.policy-section li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #ff8c69;
  font-weight: 700;
}

.policy-section strong {
  color: #5ebdb8;
  font-weight: 600;
}

.contact-box {
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 154, 118, 0.3);
}

.contact-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.contact-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-method {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  color: #5ebdb8;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-method:active {
  transform: scale(0.96);
}

/* Responsive */
@media (min-width: 768px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
  }
  
  .policies-content {
    padding: 40px;
  }
}