/* ==================== MODERN ABOUT PAGE ==================== */

/* Main Content */
.main-content {
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  margin-bottom: 2rem;
}

.breadcrumb-modern {
  background: transparent;
  padding: 0;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.breadcrumb-modern a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-modern a:hover {
  color: #dc3545;
}

.breadcrumb-modern .active {
  color: #495057;
  font-weight: 500;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}

.page-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Cards */
.card {
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-color: #dc3545;
  transform: translateY(-3px);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.icon-circle i {
  font-size: 2rem;
  color: white;
}

/* List Styles */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 767px) {
  .page-title {
    font-size: 1.5rem;
  }

  .main-content {
    padding: 0 0.5rem;
  }

  .card-body {
    padding: 1.5rem;
  }
}
