:root {
  --primary: #f97316;
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
}

.simple-card {
  font-family: sans-serif;
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.simple-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.simple-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.simple-card:hover i {
  transform: scale(1.2);
}

.simple-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.simple-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.simple-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Highlight important phrases */
.text-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Animate modal content */
.custom-modal-content {
  animation: slideFade 0.4s ease-out;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Icon banner area */
.modal-header i {
  color: var(--primary);
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: darker modal backdrop */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-title {
  padding-left: 2.5rem; /* or adjust as needed for icon width + margin */
}

.btn-orange {
  background-color: var(--primary);
  color: #fff;
  border: none;
}
.btn-orange:hover {
  background-color: color-mix(in srgb, var(--primary) 80%, black);
  color: #fff;
}

.unstyled-link {
  text-decoration: none;
  color: inherit;
}
