.terms-section {
  background-color: var(--bg-color);
  font-family: 'Alexandria', sans-serif;
  color: var(--light-text);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.term-card {
  background-color: var(--gray-color);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(188, 251, 108, 0.07);
  transition: 0.3s ease-in-out;
  height: 100%;
}

.term-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 6px 25px rgba(188, 251, 108, 0.15);
}

.term-card h5 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.term-card ul {
    list-style: none; 
    padding-left: 0; 
    margin: 0;
}

.term-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
  color: var(--light-text);
}

.term-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

html[lang="ar"] .term-card ul li {
  padding-left: 0;
  padding-right: 1.5em;
}

html[lang="ar"] .term-card ul li::before {
  left: auto;
  right: 0;
}
