.u-section-1 .u-sheet-1 {
  min-height: 1100px;
  background-color: #f3e8ff; /* very light purple background */
}

.u-section-1 .u-text-1 {
  font-size: 2.5rem;
  margin: 60px 0 10px;
  color: #8b5cf6; /* purple title on light background */
}

.u-section-1 .u-text-2 {
  font-size: 1rem;
  line-height: 1.8;
  margin: 10px 0 30px;
  color: #8b5cf6; /* purple subtitle on light background */
}

.policy-card {
  background: rgba(255, 255, 255, 0.95); /* more opaque white */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
  padding: 24px;
  margin-bottom: 18px;
  border-left: 4px solid #c4b5fd; /* light purple left border */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #c4b5fd, #f3e8ff);
  opacity: 0.4;
  border-radius: 0 16px 0 60px;
}

.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
  border-left-color: #8b5cf6; /* darker purple border on hover */
  background: #ffffff; /* solid white on hover */
}

.policy-card h3 {
  color: #8b5cf6; /* purple headings */
  margin: 0 0 10px 0;
  font-size: 1.25rem;
}

.policy-card p,
.policy-card li {
  line-height: 1.75;
  color: #495057; /* dark gray text */
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li + li {
  margin-top: 12px;
}

.policy-list li strong {
  color: #8b5cf6; /* purple for bold text */
}

/* Light purple background with subtle pattern */
.u-section-1 {
  background: linear-gradient(135deg, #f3e8ff 0%, #c4b5fd 100%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Add accent color for special elements */
.u-section-1 .u-text strong {
  color: #dc3545; /* red for important text on light purple */
}

/* Add subtle pattern overlay */
.u-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

@media (max-width: 575px) {
  .u-section-1 .u-text-1 {
    font-size: 2rem;
  }
}
