.r-about { padding: 4.5rem 0; overflow-x: hidden; }

.r-about-feature {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  border-radius: 1rem; border: 1px solid var(--color-gray-100);
  background: var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  height: 100%;
}
.r-about-feature:hover {
  border-color: rgba(43,57,144,0.15); box-shadow: 0 8px 25px rgba(43,57,144,0.06); transform: translateY(-3px);
}
.r-about-feature i { font-size: 1.5rem; color: var(--color-primary); flex-shrink: 0; margin-top: 0.125rem; }
.r-about-feature h6 { font-size: 1.0625rem; font-weight: 700; color: var(--color-gray-900); margin-bottom: 0.25rem; }
.r-about-feature p  { font-size: 0.875rem; color: var(--color-gray-600); margin: 0; line-height: 1.6; }

.r-card-corp {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 1.5rem; padding: 2rem; color: white; border: none;
  box-shadow: 0 10px 30px rgba(43,57,144,0.15);
}
.r-card-corp h6 { color: white; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.r-card-corp p  { color: rgba(255,255,255,0.85); font-size: 0.9375rem; margin-bottom: 1.25rem; line-height: 1.6; }
.r-card-corp .btn {
  background: var(--color-accent); color: white; border: none;
  border-radius: 2rem; font-weight: 600; padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}
.r-card-corp .btn:hover { background: #f07411; transform: translateY(-2px); color: white; box-shadow: 0 5px 15px rgba(245, 132, 31, 0.3); }

@media (max-width: 991.98px) {
  .r-about { padding: 3rem 0; }
  .r-about-feature { padding: 1rem; gap: 0.5rem; flex-direction: column; align-items: center; text-align: center; }
  .r-about-feature:hover { transform: none; }
  .r-about-feature i { font-size: 1.5rem; margin-top: 0; }
  .r-about-feature h6 { font-size: 0.85rem; margin-bottom: 0.25rem; line-height: 1.25; }
  .r-about-feature p { font-size: 0.75rem; line-height: 1.4; }
  
  .r-card-corp { padding: 1.5rem; margin-top: 1.5rem; }
  .r-card-corp h6 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
  .r-card-corp p { font-size: 0.875rem; margin-bottom: 1.25rem; }
  .r-card-corp .btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
}
