.ac-page { background: #f8f9fa; min-height: 100vh; }

/* Hero */
.ac-hero {
  background: linear-gradient(135deg, var(--lpu-black) 0%, #1a2a4a 100%);
  padding: clamp(100px, 15vw, 160px) 0 50px;
}
.ac-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 16px; flex-wrap: wrap;
  font-family: var(--font-body); font-weight: 400; text-transform: none;
}
.ac-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.ac-breadcrumb a:hover { color: white; }
.ac-breadcrumb span { color: rgba(255,255,255,0.35); }
.ac-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); margin: 10px 0 8px; }
.ac-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; font-family: var(--font-body); font-weight: 400; text-transform: none; }

/* Body */
.ac-body { padding: 40px 0 80px; }

/* Intro card */
.ac-intro-card {
  background: white; border-radius: 14px;
  padding: 30px; margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--lpu-orange);
}
.ac-intro-text {
  color: #555; font-size: 0.97rem; line-height: 1.8;
  font-family: var(--font-body); font-weight: 400; text-transform: none;
  margin-bottom: 16px;
}
.ac-download-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lpu-orange); color: white;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  margin-bottom: 24px; transition: opacity 0.2s;
}
.ac-download-btn:hover { opacity: 0.85; }

.ac-composition h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 12px;
  color: var(--lpu-black); text-transform: uppercase; letter-spacing: 0.5px;
}
.ac-composition ul {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px;
}
.ac-composition li {
  background: #f8f9fa; border-radius: 8px; padding: 8px 14px;
  font-size: 0.88rem; color: #444;
  font-family: var(--font-body); font-weight: 600; text-transform: none;
  border-left: 3px solid var(--lpu-orange);
}

/* Section */
.ac-section { margin-bottom: 32px; }
.ac-section-title {
  font-size: 1.1rem; font-weight: 900; color: white;
  background: var(--lpu-black); padding: 14px 20px;
  border-radius: 10px 10px 0 0; margin: 0;
  border-left: 4px solid var(--lpu-orange);
}

/* Table */
.ac-table-wrapper {
  overflow-x: auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ac-table {
  width: 100%; border-collapse: collapse;
  background: white; font-size: 0.88rem;
}
.ac-table thead tr { background: #f0f4ff; }
.ac-table th {
  padding: 12px 16px; text-align: left;
  font-size: 0.78rem; font-weight: 800;
  color: #555; text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 2px solid #e8ecf0;
}
.ac-table td {
  padding: 12px 16px; border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
  font-family: var(--font-body); font-weight: 400; text-transform: none;
  color: #333;
}
.ac-table tbody tr:hover { background: #fafbff; }
.ac-table tbody tr:last-child td { border-bottom: none; }
.ac-sl { font-weight: 700; color: var(--lpu-orange); width: 50px; }
.ac-table td strong { font-weight: 700; color: var(--lpu-black); display: block; margin-bottom: 2px; }
.ac-email { margin-top: 3px; }
.ac-email a { color: var(--lpu-orange); font-size: 0.82rem; text-decoration: none; }
.ac-email a:hover { text-decoration: underline; }
.ac-role { color: #555; font-size: 0.85rem; max-width: 260px; }
.ac-contact { font-weight: 600; white-space: nowrap; color: #333; }

.ac-footer-note {
  text-align: center; color: #888; font-size: 0.85rem;
  margin-top: 40px; font-style: italic;
  font-family: var(--font-body); font-weight: 400; text-transform: none;
}

@media (max-width: 768px) {
  .ac-table th:nth-child(4),
  .ac-table td:nth-child(4) { display: none; }
}
