@import url('../../css/style.css');

:root {
  /* Professional Legal Theme Overrides */
  --green:       #1a365d; /* Dark navy blue */
  --green-light: #2b6cb0; /* Vibrant corporate blue */
  --green-dark:  #0f172a; /* Deep charcoal navy */
  --teal:        #3182ce; /* Accent light blue */
  --orange:      #d69e2e; /* Legal gold accent */
  --link-hover:  var(--green-light);
  --off:         #f7fafc; /* Sleek cool grey background */
  --border:      #e2e8f0; /* Crisp borders */
  --muted:       #718096; /* Slate muted text */
}

/* Custom styles for legal components */
.trust-objectives-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.trust-objectives-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.trust-objectives-list li::before {
  content: "⚖";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 1.2rem;
}

/* Donation Cards */
.donation-cta-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(26, 54, 93, 0.2);
  margin-bottom: 30px;
  text-align: center;
}

.donation-cta-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.donation-cta-card p {
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donation-cta-card .cta-btn {
  background: var(--orange);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease;
}

.donation-cta-card .cta-btn:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-2px);
}
