/* CBSE School Setup Specific Styles */

/* Hero Section */
.cbse-hero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: white;
}

.cbse-hero .hero-subtitle {
  font-size: 1.3rem;
  margin: 1rem 0 1.5rem;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.5;
}

/* Timeline Banner */
.timeline-banner {
  background: #f5f7ff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.timeline-overview h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.timeline-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline-step {
  text-align: center;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  min-width: 100px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 2px solid #1a237e;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0.3rem;
}

.step-label {
  font-size: 0.85rem;
  color: #424242;
  line-height: 1.2;
}

.timeline-arrow {
  color: #1a237e;
  font-weight: bold;
  font-size: 1.2rem;
}

.timeline-note {
  text-align: center;
  font-size: 0.9rem;
  color: #616161;
  font-weight: 500;
  margin-top: 1rem;
}

/* Executive Summary */
.executive-summary {
  margin: 2.5rem 0;
  padding: 2rem;
  background: #f8f9ff;
  border-radius: 12px;
  border-left: 4px solid #1a237e;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.summary-header h2 {
  margin: 0;
  color: #1a237e;
}

.summary-badge {
  background: #1a237e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #424242;
  margin-bottom: 2rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.summary-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.summary-icon {
  width: 50px;
  height: 50px;
  background: #e8eaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #1a237e;
  font-size: 1.3rem;
}

.summary-card h4 {
  margin: 0 0 1rem;
  color: #1a237e;
}

.summary-card p {
  font-size: 0.9rem;
  color: #616161;
  margin: 0;
  line-height: 1.5;
}

/* Quick Navigation */
.quick-nav-section {
  margin: 2.5rem 0;
}

.quick-nav-section h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.phase-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.phase-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.phase-card:hover {
  transform: translateY(-5px);
  border-color: #1a237e;
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.phase-number {
  width: 40px;
  height: 40px;
  background: #1a237e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.phase-card h4 {
  margin: 0 0 0.5rem;
  color: #212121;
  font-size: 1rem;
}

.phase-card p {
  font-size: 0.85rem;
  color: #757575;
  margin: 0;
}

/* Implementation Phases */
.implementation-phase {
  margin: 3rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.implementation-phase:last-child {
  border-bottom: none;
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.phase-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phase-number {
  background: #1a237e;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
}

.phase-header h2 {
  margin: 0;
  color: #1a237e;
  font-size: 1.8rem;
}

.phase-timeline {
  background: #e8eaf6;
  color: #1a237e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.phase-intro {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #1a237e;
}

.phase-intro p {
  margin: 0;
  font-size: 1.05rem;
  color: #424242;
  line-height: 1.6;
}

/* Market Study Components */
.market-study-components {
  margin: 2rem 0;
}

.market-study-components h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.study-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-top: 3px solid #1a237e;
}

.study-icon {
  width: 50px;
  height: 50px;
  background: #e8eaf6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #1a237e;
  font-size: 1.3rem;
}

.study-card h4 {
  margin: 0 0 1rem;
  color: #212121;
  font-size: 1.1rem;
}

.study-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.study-card li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
  color: #424242;
  line-height: 1.4;
}

.study-card li:before {
  content: "•";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Deliverable Output */
.deliverable-output {
  margin: 2.5rem 0;
}

.deliverable-output h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.output-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.output-card h4 {
  margin: 0 0 1.5rem;
  color: #1a237e;
  font-size: 1.2rem;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.output-item {
  padding: 1rem;
  background: #f8f9ff;
  border-radius: 6px;
}

.output-label {
  font-size: 0.85rem;
  color: #757575;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.output-value {
  font-size: 0.9rem;
  color: #424242;
  line-height: 1.4;
}

/* Regulatory Overview */
.regulatory-overview {
  margin: 2.5rem 0;
}

.regulatory-overview h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.authority-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.authority-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.authority-card.primary {
  border-color: #1a237e;
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.authority-header {
  background: #1a237e;
  color: white;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.authority-header i {
  font-size: 1.5rem;
}

.authority-header h4 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.authority-badge {
  background: rgba(255,255,255,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.authority-content {
  padding: 1.5rem;
}

.requirement-item {
  margin-bottom: 1.5rem;
}

.req-title {
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.req-details {
  font-size: 0.9rem;
  color: #424242;
}

.req-details p {
  margin: 0 0 0.8rem;
}

.req-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.req-details li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.req-details li:before {
  content: "✓";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.authority-link {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a237e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #0d47a1;
  gap: 0.8rem;
}

/* Licensing Checklist */
.licensing-checklist {
  margin: 2.5rem 0;
}

.licensing-checklist h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.checklist-phase {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.checklist-phase h4 {
  margin: 0 0 1rem;
  color: #1a237e;
  font-size: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e8eaf6;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checklist-item input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #1a237e;
}

.checklist-item label {
  font-size: 0.9rem;
  color: #424242;
  line-height: 1.4;
  cursor: pointer;
  flex: 1;
}

/* Critical Tips */
.critical-tips {
  margin: 2.5rem 0;
}

.critical-tips h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: #e8eaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #1a237e;
  font-size: 1.3rem;
}

.tip-card h4 {
  margin: 0 0 1rem;
  color: #212121;
  font-size: 1.1rem;
}

.tip-card p {
  font-size: 0.9rem;
  color: #616161;
  margin: 0;
  line-height: 1.5;
}

/* CBSE Process */
.cbse-process {
  margin: 2.5rem 0;
}

.cbse-process h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.process-timeline {
  position: relative;
  padding-left: 40px;
}

.process-timeline:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1a237e;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  width: 30px;
  height: 30px;
  background: #1a237e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
  position: absolute;
  left: -37px;
  z-index: 2;
}

.step-content {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  flex: 1;
}

.step-content h4 {
  margin: 0 0 0.8rem;
  color: #1a237e;
  font-size: 1.1rem;
}

.step-content p {
  font-size: 0.9rem;
  color: #424242;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.step-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-tag {
  background: #e8eaf6;
  color: #1a237e;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* CBSE Documents */
.cbse-documents {
  margin: 2.5rem 0;
}

.cbse-documents h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.document-category {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.document-category h4 {
  margin: 0 0 1.5rem;
  color: #1a237e;
  font-size: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e8eaf6;
}

.document-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-category li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f5f5f5;
}

.document-category li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.document-category i {
  color: #1a237e;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.document-category div {
  flex: 1;
}

.document-category strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #212121;
  font-size: 0.95rem;
}

.document-category span {
  font-size: 0.85rem;
  color: #616161;
  line-height: 1.4;
}

/* CBSE Requirements */
.cbse-requirements {
  margin: 2.5rem 0;
}

.cbse-requirements h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.requirements-table {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.requirements-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.requirements-table th {
  background: #1a237e;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.requirements-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #424242;
}

.requirements-table tr:last-child td {
  border-bottom: none;
}

.requirements-table tr:nth-child(even) {
  background: #f8f9ff;
}

.cbse-portal {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.cbse-portal h4 {
  margin: 0 0 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.portal-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9ff;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.portal-link:hover {
  background: #e8eaf6;
  transform: translateX(5px);
}

.portal-link i:first-child {
  color: #1a237e;
  font-size: 1.5rem;
}

.portal-link div {
  flex: 1;
}

.portal-link strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #212121;
  font-size: 0.95rem;
}

.portal-link span {
  font-size: 0.85rem;
  color: #616161;
}

/* Infrastructure Standards */
.infrastructure-standards {
  margin: 2.5rem 0;
}

.infrastructure-standards h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.standard-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-top: 3px solid #1a237e;
}

.standard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.standard-header i {
  color: #1a237e;
  font-size: 1.5rem;
}

.standard-header h4 {
  margin: 0;
  color: #212121;
  font-size: 1.1rem;
}

.standard-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.standard-card li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
  color: #424242;
  line-height: 1.4;
}

.standard-card li:before {
  content: "✓";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Construction Timeline */
.construction-timeline {
  margin: 2.5rem 0;
}

.construction-timeline h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.construction-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.construction-phase {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.phase-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e8eaf6;
}

.phase-order {
  width: 30px;
  height: 30px;
  background: #1a237e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.phase-title h4 {
  margin: 0;
  color: #212121;
  font-size: 1.1rem;
  flex: 1;
}

.phase-duration {
  background: #e8eaf6;
  color: #1a237e;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.phase-tasks {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.task-item i {
  color: #1a237e;
  font-size: 0.9rem;
}

.task-item span {
  font-size: 0.9rem;
  color: #424242;
  flex: 1;
}

/* Cost Breakdown */
.cost-breakdown {
  margin: 2.5rem 0;
}

.cost-breakdown h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cost-analysis {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.cost-chart {
  margin-bottom: 2rem;
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bar-label {
  flex: 0 0 200px;
  font-size: 0.9rem;
  color: #424242;
}

.bar-container {
  flex: 1;
  height: 25px;
  background: #e8eaf6;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, #1a237e, #283593);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  min-width: 40px;
}

.bar-value {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.bar-amount {
  flex: 0 0 100px;
  text-align: right;
  font-weight: 600;
  color: #1a237e;
  font-size: 0.9rem;
}

.cost-summary {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 8px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.summary-label {
  font-size: 0.9rem;
  color: #424242;
}

.summary-value {
  font-weight: 600;
  color: #1a237e;
  font-size: 1rem;
}

/* Operations Components */
.operations-components {
  margin: 2.5rem 0;
}

.operations-components h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.component-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.component-header {
  background: #1a237e;
  color: white;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.component-header i {
  font-size: 1.3rem;
}

.component-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.component-content {
  padding: 1.5rem;
}

.staffing-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.staffing-phase {
  font-size: 0.9rem;
  color: #424242;
  line-height: 1.4;
}

.staffing-phase strong {
  color: #1a237e;
}

.staffing-requirements h5 {
  margin: 0 0 0.8rem;
  color: #212121;
  font-size: 1rem;
}

.staffing-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staffing-requirements li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  color: #424242;
  line-height: 1.4;
}

.staffing-requirements li:before {
  content: "•";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.academic-tasks, .systems-implementation, .marketing-strategy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.task-group h5, .system-category h5, .strategy-phase strong {
  margin: 0 0 0.8rem;
  color: #212121;
  font-size: 1rem;
}

.task-group ul, .system-category ul, .strategy-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.task-group li, .system-category li, .strategy-phase li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  color: #424242;
  line-height: 1.4;
}

.task-group li:before, .system-category li:before, .strategy-phase li:before {
  content: "•";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Final Checklist */
.final-checklist {
  margin: 2.5rem 0;
}

.final-checklist h3 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checklist-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.checklist-section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.checklist-section h4 {
  margin: 0 0 1.5rem;
  color: #1a237e;
  font-size: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e8eaf6;
}

.check-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.check-item i {
  color: #1a237e;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.check-item span {
  font-size: 0.9rem;
  color: #424242;
  flex: 1;
  line-height: 1.4;
}

/* Risk Management */
.risk-management {
  margin: 3rem 0;
}

.risk-management h2 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.risk-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.risk-header {
  padding: 1.2rem 1.5rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.risk-header.high {
  background: #d32f2f;
}

.risk-header.medium {
  background: #f57c00;
}

.risk-header.low {
  background: #388e3c;
}

.risk-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.risk-level {
  background: rgba(255,255,255,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.risk-content {
  padding: 1.5rem;
}

.risk-content p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #424242;
  line-height: 1.5;
}

.mitigation {
  background: #f8f9ff;
  padding: 1rem;
  border-radius: 6px;
}

.mitigation strong {
  display: block;
  margin-bottom: 0.8rem;
  color: #1a237e;
  font-size: 0.9rem;
}

.mitigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mitigation li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  color: #424242;
  line-height: 1.4;
}

.mitigation li:before {
  content: "✓";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Services Section */
.services-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9ff;
  border-radius: 12px;
  border-left: 4px solid #1a237e;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.services-header h2 {
  margin: 0;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.services-badge {
  background: #1a237e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.services-description {
  margin-bottom: 2rem;
}

.services-description p {
  font-size: 1.05rem;
  color: #424242;
  line-height: 1.6;
  margin: 0;
}

.services-offering {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-package {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-top: 3px solid #1a237e;
  transition: all 0.3s ease;
}

.service-package:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.package-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.package-header i {
  color: #1a237e;
  font-size: 1.5rem;
}

.package-header h3 {
  margin: 0;
  color: #212121;
  font-size: 1.1rem;
}

.service-package ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-package li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
  color: #424242;
  line-height: 1.4;
}

.service-package li:before {
  content: "✓";
  color: #1a237e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cta-section {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.cta-content h3 {
  margin: 0 0 1rem;
  color: #1a237e;
  font-size: 1.5rem;
}

.cta-content p {
  font-size: 1rem;
  color: #424242;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #1a237e;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #0d47a1;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1a237e;
  border: 2px solid #1a237e;
}

.btn-secondary:hover {
  background: #1a237e;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1a237e;
  border: 2px solid #e0e0e0;
}

.btn-outline:hover {
  border-color: #1a237e;
  transform: translateY(-2px);
}

/* Conclusion Section */
.conclusion-section {
  margin: 3rem 0;
}

.conclusion-section h2 {
  margin-bottom: 1.5rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.recommendation-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.rec-icon {
  width: 50px;
  height: 50px;
  background: #e8eaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #1a237e;
  font-size: 1.3rem;
}

.recommendation-card h4 {
  margin: 0 0 1rem;
  color: #212121;
  font-size: 1.1rem;
}

.recommendation-card p {
  font-size: 0.9rem;
  color: #616161;
  margin: 0;
  line-height: 1.5;
}

.final-note {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.final-note h4 {
  margin: 0 0 1rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.final-note p {
  font-size: 0.95rem;
  color: #424242;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-offering {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .timeline-steps {
    flex-wrap: wrap;
  }
  
  .timeline-arrow {
    display: none;
  }
  
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .services-offering {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .timeline-step {
    min-width: 80px;
    padding: 0.8rem;
  }
  
  .step-number {
    font-size: 1.2rem;
  }
  
  .step-label {
    font-size: 0.75rem;
  }
  
  .summary-grid, .phase-navigation, .study-grid,
  .authority-comparison, .checklist-grid, .tips-grid,
  .documents-grid, .standards-grid, .construction-phases,
  .components-grid, .checklist-sections, .risks-grid,
  .recommendations-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .chart-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .bar-label, .bar-amount {
    flex: none;
    width: 100%;
  }
  
  .bar-container {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .executive-summary, .services-section {
    padding: 1.5rem;
  }
  
  .phase-header h2 {
    font-size: 1.5rem;
  }
  
  .process-timeline {
    padding-left: 30px;
  }
  
  .step-marker {
    left: -32px;
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
  
  .cost-analysis {
    padding: 1.5rem;
  }
  
  .component-content {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  .header, .footer, .more-articles, .sidebar,
  .share-buttons, .cta-buttons, .newsletter-widget,
  .timeline-banner, .quick-nav-section {
    display: none !important;
  }
  
  .article-content {
    padding: 0 !important;
  }
  
  .content-wrapper {
    display: block !important;
  }
  
  .main-content {
    width: 100% !important;
  }
  
  .implementation-phase, .risk-card, .service-package {
    break-inside: avoid;
  }
  
  .btn-link, .portal-link {
    color: #000 !important;
    text-decoration: underline !important;
  }
}