/* Responsible Lending Page Specific Styles */
:root {
  --primary-color: #9c5d3e;
  --secondary-color: #4a382f;
  --light-color: #f4f0ed;
}

.terms-content {
  padding: 20px 0;
}

.terms-content h2 {
  margin-bottom: 30px;
  position: relative;
  color: var(--primary-color);
  font-size: 28px;
}

.terms-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.terms-content h3 {
  margin: 25px 0 15px;
  color: var(--secondary-color);
  font-size: 22px;
}

.terms-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.terms-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.terms-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.terms-content li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
}

/* Feature Cards for Principles */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.feature-card {
  background-color: white;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin: 15px 0;
  font-size: 20px;
  color: var(--secondary-color);
}

.feature-card p {
  font-size: 15px;
  color: #666;
}

/* Contact Info */
.contact-info {
  padding: 20px;
  margin: 20px 0;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

/* CTA Center */
.cta-center {
  text-align: center;
  margin: 40px 0;
}

.cta-center a {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
