/* School Facilities UAE Article Specific Styles */

/* Hero Section */
.school-facilities-hero {
  background: linear-gradient(135deg, #1a5276 0%, #2e86c1 50%, #5dade2 100%);
  color: white;
}

.school-facilities-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.school-facilities-hero .breadcrumb span {
  color: white;
}

.school-facilities-hero .article-category {
  background: #f39c12;
}

.school-facilities-hero .article-meta {
  color: rgba(255, 255, 255, 0.8);
}

.school-facilities-hero .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.school-facilities-hero .tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Introduction Section */
.introduction-section h2 {
  color: #1a5276;
  border-left: 4px solid #f39c12;
  padding-left: 1rem;
}

.investment-warning {
  margin: 2rem 0;
}

.warning-card {
  background: linear-gradient(135deg, #fff8e1 0%, #ffeaa7 100%);
  border: 2px solid #f39c12;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.warning-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #f39c12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.warning-content h3 {
  margin: 0 0 1rem 0;
  color: #1a5276;
}

.target-audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.target-audience span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.target-audience i {
  color: #f39c12;
}

/* Reality Check */
.reality-check {
  margin: 3rem 0;
}

.reality-check h3 {
  color: #1a5276;
  margin-bottom: 1.5rem;
}

.reality-grid {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin: 2rem 0;
}

.reality-card {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.reality-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.reality-header i {
  font-size: 1.5rem;
}

.reality-card:first-child .reality-header i {
  color: #e74c3c;
}

.reality-card:last-child .reality-header i {
  color: #27ae60;
}

.reality-header h4 {
  margin: 0;
  color: #1a5276;
}

.reality-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reality-card li {
  margin-bottom: 0.8rem;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #555;
}

.reality-card:first-child li i {
  color: #e74c3c;
}

.reality-card:last-child li i {
  color: #27ae60;
}

.reality-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 1.5rem;
}

.insight-quote {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #f39c12;
  position: relative;
}

.insight-quote i:first-child {
  position: absolute;
  top: 10px;
  left: 15px;
  color: rgba(243, 156, 18, 0.2);
  font-size: 2rem;
}

.insight-quote i:last-child {
  position: absolute;
  bottom: 10px;
  right: 15px;
  color: rgba(243, 156, 18, 0.2);
  font-size: 2rem;
}

.insight-quote p {
  margin: 0;
  font-size: 1.2rem;
  font-style: italic;
  color: #1a5276;
  font-weight: 500;
}

/* Regulatory Landscape */
.regulatory-card {
  background: linear-gradient(135deg, #e8f4fc 0%, #d6eaf8 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.regulatory-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.regulatory-header i {
  font-size: 2rem;
  color: #1a5276;
}

.regulatory-header h3 {
  margin: 0;
  color: #1a5276;
}

.regulatory-bodies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.regulatory-body {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.body-logo {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #1a5276;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.regulatory-body:nth-child(2) .body-logo {
  background: #2e86c1;
}

.body-details h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.body-details p {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

.body-focus {
  display: inline-block;
  background: #f8f9fa;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #1a5276;
  font-weight: 500;
}

/* Approval Gap */
.approval-gap {
  margin: 3rem 0;
}

.gap-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.gap-stage {
  flex: 1;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.approval {
  border-top: 5px solid #e74c3c;
}

.inspection {
  border-top: 5px solid #27ae60;
}

.stage-icon {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
}

.approval .stage-icon {
  color: #e74c3c;
}

.inspection .stage-icon {
  color: #27ae60;
}

.stage-content h4 {
  margin: 0 0 1rem 0;
  color: #1a5276;
  font-size: 1.3rem;
}

.stage-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  font-style: italic;
}

.stage-outcome {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stage-outcome span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.stage-outcome i {
  color: #f39c12;
}

.gap-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 2rem;
}

.warning-box {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #e74c3c;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.warning-icon {
  flex-shrink: 0;
  color: #e74c3c;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.warning-text p {
  margin: 0;
  color: #c0392b;
}

.warning-text strong {
  color: #1a5276;
}

/* Real Life Case */
.real-life-case {
  margin: 2.5rem 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0;
}

.case-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-header {
  padding: 1.5rem;
  color: white;
}

.case-header.negative {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.case-header.positive {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.case-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.case-details {
  padding: 1.5rem;
  background: white;
}

.case-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-details li {
  margin-bottom: 0.8rem;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
}

.case-details i {
  color: #f39c12;
}

/* Standards Comparison */
.standards-intro {
  margin: 2rem 0;
}

.standards-card {
  background: linear-gradient(135deg, #e8f6f3 0%, #d1f2eb 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 5px solid #27ae60;
}

.standards-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.standards-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.standards-content p {
  margin: 0;
  color: #666;
}

.standards-content strong {
  color: #1a5276;
}

/* Comparison Table */
.comparison-table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #1a5276;
  color: white;
  font-weight: bold;
}

.table-col {
  padding: 1rem 1.5rem;
}

.table-col.area {
  background: #154360;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #eee;
}

.table-row:nth-child(even) {
  background: #f8f9fa;
}

.table-col {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.table-col.area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: #1a5276;
}

.table-col.area i {
  font-size: 1.2rem;
  color: #f39c12;
}

.table-col.minimum p,
.table-col.inspection p {
  margin: 0 0 0.5rem 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.minimum {
  background: #ffebee;
  color: #e74c3c;
}

.status-badge.inspection {
  background: #e8f6f3;
  color: #27ae60;
}

/* Inspection Focus */
.inspection-focus {
  margin: 3rem 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.focus-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f39c12;
  transition: transform 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.focus-icon {
  width: 60px;
  height: 60px;
  background: #fef5e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: #f39c12;
  font-size: 1.5rem;
}

.focus-card h4 {
  margin: 0 0 0.8rem 0;
  color: #1a5276;
}

.focus-card p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.professionals-insight {
  margin: 2.5rem 0;
}

.insight-card {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 5px solid #f39c12;
}

.insight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.insight-header i {
  font-size: 2rem;
  color: #f39c12;
}

.insight-header h3 {
  margin: 0;
  color: #1a5276;
}

.insight-content p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.insight-content p:last-child {
  margin-bottom: 0;
}

.insight-content strong {
  color: #1a5276;
  font-size: 1.1rem;
}

/* Myth Buster */
.myth-buster {
  margin: 2rem 0;
}

.myth-card {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px solid #e74c3c;
}

.myth-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.myth-header i {
  font-size: 2rem;
  color: #e74c3c;
}

.myth-header h3 {
  margin: 0;
  color: #1a5276;
}

.myth-content p {
  margin: 0;
  color: #666;
}

.myth-content p:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  color: #c0392b;
  margin-bottom: 0.5rem;
}

/* Plot Reality */
.plot-reality {
  margin: 2.5rem 0;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.reality-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reality-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #e8f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5276;
  font-size: 1.2rem;
}

.reality-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.reality-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Plot Comparison */
.plot-comparison {
  margin: 3rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0;
}

.plot-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plot-header {
  padding: 1.5rem;
  color: white;
}

.good-plot .plot-header {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.bad-plot .plot-header {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.plot-header h4 {
  margin: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plot-features {
  padding: 1.5rem;
  background: white;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #555;
}

.good-plot .feature i {
  color: #27ae60;
}

.bad-plot .feature i {
  color: #e74c3c;
}

.plot-outcome {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.outcome-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.outcome-tag.positive {
  background: #d5f4e6;
  color: #27ae60;
}

.outcome-tag.negative {
  background: #fadbd8;
  color: #e74c3c;
}

/* Cost Analysis */
.cost-analysis {
  margin: 2.5rem 0;
}

.analysis-card {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 5px solid #f39c12;
}

.analysis-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.analysis-header i {
  font-size: 2rem;
  color: #f39c12;
}

.analysis-header h3 {
  margin: 0;
  color: #1a5276;
}

.analysis-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cost-item {
  text-align: center;
}

.cost-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #e74c3c;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cost-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Common Mistake */
.common-mistake {
  margin: 2.5rem 0;
}

.mistake-card {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 2px solid #e74c3c;
}

.mistake-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.mistake-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.mistake-content p {
  margin: 0;
  color: #666;
}

.mistake-content strong {
  color: #c0392b;
}

/* Mistakes Intro */
.mistakes-intro {
  margin: 2rem 0;
}

.mistakes-card {
  background: linear-gradient(135deg, #e8f4fc 0%, #d6eaf8 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 5px solid #2e86c1;
}

.mistakes-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #2e86c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.mistakes-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.mistakes-content p {
  margin: 0;
  color: #666;
}

/* Mistake Details */
.mistake-details {
  margin: 3rem 0;
}

.mistake-item {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #eee;
}

.mistake-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mistake-number {
  font-size: 3rem;
  font-weight: bold;
  color: #f39c12;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.mistake-content h3 {
  margin: 0 0 1rem 0;
  color: #1a5276;
}

.mistake-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.6;
}

.mistake-content strong {
  color: #1a5276;
}

.consequences h4 {
  color: #1a5276;
  margin-bottom: 1rem;
}

.consequence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.consequence {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
}

.consequence i {
  color: #e74c3c;
  font-size: 1.2rem;
}

/* Evolution Timeline */
.evolution-timeline {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.timeline-item {
  flex: 0 0 200px;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2e86c1;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e86c1;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1rem;
}

.timeline-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Operational Issues */
.operational-issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.issue-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.issue-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fef5e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 1.2rem;
}

.issue-details h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1rem;
}

.issue-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Case Study */
.case-study {
  margin: 3rem 0;
}

.case-study-card {
  background: linear-gradient(135deg, #f4ecf7 0%, #e8daef 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 5px solid #8e44ad;
}

.case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-header i {
  font-size: 2rem;
  color: #8e44ad;
}

.case-header h3 {
  margin: 0;
  color: #1a5276;
}

.case-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.case-phase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #ddd;
}

.case-phase:last-child {
  border-bottom: none;
}

.phase-title {
  font-weight: 500;
  color: #1a5276;
  min-width: 150px;
}

.phase-details {
  flex: 1;
}

.phase-details p {
  margin: 0 0 0.5rem 0;
  color: #666;
}

.phase-details strong {
  color: #1a5276;
}

.phase-cost {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.case-phase:nth-child(2) .phase-cost {
  background: #f39c12;
}

.case-phase:nth-child(3) .phase-cost {
  background: #e74c3c;
}

.case-phase:nth-child(4) .phase-cost {
  background: #c0392b;
}

.case-lesson {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #8e44ad;
}

.case-lesson h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.case-lesson p {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Redesign Intro */
.redesign-intro {
  margin: 2rem 0;
}

.redesign-card {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 5px solid #e74c3c;
}

.redesign-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.redesign-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.redesign-content p {
  margin: 0;
  color: #666;
}

/* Inspection Surprises */
.inspection-surprises {
  margin: 2.5rem 0;
}

.surprises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.surprise-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #e74c3c;
}

.surprise-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.surprise-header i {
  font-size: 1.5rem;
  color: #e74c3c;
}

.surprise-header h4 {
  margin: 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.surprise-details p {
  margin: 0 0 1rem 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.fix-cost {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cost-label {
  font-weight: 500;
  color: #1a5276;
}

.cost-amount {
  font-weight: bold;
  color: #e74c3c;
}

/* Consequence Analysis */
.consequence-analysis {
  margin: 3rem 0;
}

.consequence-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.chain-link {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f39c12;
}

.link-icon {
  width: 50px;
  height: 50px;
  background: #fef5e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: #f39c12;
  font-size: 1.5rem;
}

.link-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1rem;
}

.link-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.chain-arrow {
  color: #f39c12;
  font-size: 1.2rem;
}

.cost-multiplier {
  margin: 2.5rem 0;
}

.multiplier-card {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 5px solid #f39c12;
}

.multiplier-icon {
  float: left;
  margin-right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #f39c12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.multiplier-content h3 {
  margin: 0 0 1rem 0;
  color: #1a5276;
}

.multiplier-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.6;
}

.multiplier-content strong {
  color: #c0392b;
}

.multiplier-example {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.example-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}

.example-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.example-label {
  color: #666;
}

.example-cost {
  font-weight: bold;
  color: #1a5276;
}

.multiplier {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: bold;
  color: #e74c3c;
}

/* Strategy Intro */
.strategy-intro {
  margin: 2rem 0;
}

.strategy-card {
  background: linear-gradient(135deg, #e8f6f3 0%, #d1f2eb 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 5px solid #27ae60;
}

.strategy-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.strategy-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.strategy-content p {
  margin: 0;
  color: #666;
}

/* Commercial Impact */
.commercial-impact {
  margin: 2.5rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.impact-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2e86c1;
}

.impact-icon {
  width: 50px;
  height: 50px;
  background: #e8f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2e86c1;
  font-size: 1.3rem;
}

.impact-details h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.impact-details p {
  margin: 0 0 1rem 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.impact-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.metric-label {
  font-weight: 500;
  color: #1a5276;
}

.metric-value {
  font-weight: bold;
  color: #27ae60;
}

/* Inspection Ready Benefits */
.inspection-ready-benefits {
  margin: 3rem 0;
}

.benefits-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefits-column {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefits-column:first-child {
  border-top: 5px solid #27ae60;
}

.benefits-column:last-child {
  border-top: 5px solid #e74c3c;
}

.column-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.column-header h4 {
  margin: 0;
  color: #1a5276;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-column:first-child .column-header h4 i {
  color: #27ae60;
}

.benefits-column:last-child .column-header h4 i {
  color: #e74c3c;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
}

.benefit-item i {
  color: #27ae60;
}

.benefit-item.negative i {
  color: #e74c3c;
}

.strategic-insight {
  margin: 2.5rem 0;
}

/* Consultancy Value */
.consultancy-value {
  margin: 2rem 0;
}

.value-card {
  background: linear-gradient(135deg, #f4ecf7 0%, #e8daef 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 5px solid #8e44ad;
}

.value-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #8e44ad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.value-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
}

.value-content p {
  margin: 0;
  color: #666;
}

/* Consultancy ROI */
.consultancy-roi {
  margin: 2.5rem 0;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.roi-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #27ae60;
}

.roi-header {
  margin-bottom: 1rem;
}

.roi-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #27ae60;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roi-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.roi-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Consultancy Process */
.consultancy-process {
  margin: 3rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-step {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2e86c1;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: #2e86c1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-content h4 {
  margin: 0 0 1rem 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.step-content p {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

.step-content p:last-child {
  margin-bottom: 0;
}

/* Early Consultancy Benefits */
.early-consultancy-benefits {
  margin: 2.5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #e8f6f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  font-size: 1.2rem;
}

.benefit-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1rem;
}

.benefit-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Cost Comparison */
.cost-comparison {
  margin: 3rem 0;
}

.comparison-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.comparison-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.comparison-header h3 {
  margin: 0;
  color: #1a5276;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-content {
  display: flex;
  gap: 2rem;
}

.cost-scenario {
  flex: 1;
}

.scenario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.scenario-header h4 {
  margin: 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.scenario-cost {
  font-weight: bold;
  color: #e74c3c;
  font-size: 1.2rem;
}

.cost-scenario:first-child .scenario-cost {
  color: #27ae60;
}

.scenario-outcomes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.outcome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
}

.outcome.positive i {
  color: #27ae60;
}

.outcome.negative i {
  color: #e74c3c;
}

.scenario-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-weight: bold;
  font-size: 1.2rem;
}

.conclusion-statement {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.conclusion-statement strong {
  color: #1a5276;
}

/* Fragmentation Warning */
.fragmentation-warning {
  margin: 2rem 0;
}

/* Fragmented Approach */
.fragmented-approach {
  margin: 2.5rem 0;
}

.approach-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.approach-phase {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #e74c3c;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phase-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #ffebee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  font-size: 1.2rem;
}

.phase-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.phase-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.phase-arrow {
  text-align: center;
  color: #e74c3c;
  font-size: 1.2rem;
}

.fragmentation-consequences {
  margin-top: 2rem;
}

.fragmentation-consequences h4 {
  color: #1a5276;
  margin-bottom: 1rem;
}

.consequences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.consequence-item {
  background: #ffebee;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #e74c3c;
  font-weight: 500;
}

.consequence-item i {
  font-size: 1.5rem;
}

/* Integrated Approach */
.integrated-approach {
  margin: 3rem 0;
}

.integrated-visual {
  position: relative;
  height: 400px;
  margin: 2rem 0;
}

.integrated-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 0 10px rgba(39, 174, 96, 0.2);
  z-index: 2;
}

.center-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.center-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.integrated-ring {
  position: absolute;
  width: 100%;
  height: 100%;
}

.integrated-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease;
}

.integrated-element:hover {
  transform: scale(1.1);
  z-index: 3;
}

.integrated-element i {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #27ae60;
}

/* Position integrated elements in a circle */
.integrated-element:nth-child(1) {
  top: 10%;
  left: 20%;
}

.integrated-element:nth-child(2) {
  top: 10%;
  right: 20%;
}

.integrated-element:nth-child(3) {
  top: 30%;
  left: 5%;
}

.integrated-element:nth-child(4) {
  top: 30%;
  right: 5%;
}

.integrated-element:nth-child(5) {
  bottom: 30%;
  left: 5%;
}

.integrated-element:nth-child(6) {
  bottom: 30%;
  right: 5%;
}

.integrated-benefits {
  margin-top: 2rem;
}

.integrated-benefits h4 {
  color: #1a5276;
  margin-bottom: 1rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
}

.benefit i {
  color: #27ae60;
}

/* Role of Consultancy */
.role-of-consultancy {
  margin: 2.5rem 0;
}

.role-card {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 5px solid #f39c12;
}

.role-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.role-header i {
  font-size: 2rem;
  color: #f39c12;
}

.role-header h3 {
  margin: 0;
  color: #1a5276;
}

.role-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.6;
}

.role-content strong {
  color: #1a5276;
}

.role-functions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.function {
  background: white;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.function h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1rem;
}

.function p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Conclusion */
.conclusion-section {
  background: linear-gradient(135deg, #e8f4fc 0%, #d6eaf8 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  border-left: 5px solid #2e86c1;
}

.conclusion-header .conclusion-subtitle {
  color: #1a5276;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.audience-checklist {
  margin: 2rem 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
}

.checklist-item i {
  color: #27ae60;
}

.strategic-shift {
  margin: 2.5rem 0;
}

.shift-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.shift-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shift-header i {
  font-size: 2rem;
  color: #2e86c1;
}

.shift-header h3 {
  margin: 0;
  color: #1a5276;
}

.shift-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.shift-from,
.shift-to {
  flex: 1;
}

.shift-from h4,
.shift-to h4 {
  margin: 0 0 1rem 0;
  color: #1a5276;
  font-size: 1.1rem;
}

.from-item,
.to-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #555;
}

.from-item i {
  color: #e74c3c;
}

.to-item i {
  color: #27ae60;
}

.shift-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 2rem;
}

/* Professionals Services */
.professionals-services {
  margin: 2.5rem 0;
}

.services-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.services-header i {
  font-size: 2rem;
  color: #f39c12;
}

.services-header h3 {
  margin: 0;
  color: #1a5276;
}

.services-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fef5e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 1.2rem;
}

.service-details h4 {
  margin: 0 0 0.5rem 0;
  color: #1a5276;
  font-size: 1rem;
}

.service-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.services-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #eee;
}

.cta-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  font-size: 1.1rem;
}

.cta-content strong {
  color: #1a5276;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f39c12;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e67e22;
  text-decoration: none;
}

/* Closing Statement */
.closing-statement {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #ddd;
}

.closing-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #2e86c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.closing-text h3 {
  margin: 0 0 1rem 0;
  color: #1a5276;
}

.closing-text p {
  margin: 0 0 1rem 0;
  color: #666;
  line-height: 1.6;
}

.closing-text p:last-child {
  margin-bottom: 0;
}

.closing-signature {
  font-style: italic;
  color: #1a5276;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gap-visual {
    flex-direction: column;
    align-items: center;
  }
  
  .gap-stage {
    max-width: 100%;
  }
  
  .gap-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .comparison-content {
    flex-direction: column;
  }
  
  .scenario-divider {
    margin: 1rem 0;
  }
  
  .integrated-visual {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  
  .reality-grid,
  .comparison-grid,
  .case-grid,
  .focus-grid,
  .reality-grid,
  .surprises-grid,
  .impact-grid,
  .benefits-comparison,
  .roi-grid,
  .process-steps,
  .benefits-grid,
  .services-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }
  
  .table-col {
    padding: 0.8rem;
  }
  
  .table-col.area {
    background: #1a5276;
    color: white;
  }
  
  .consequence-chain {
    flex-direction: column;
  }
  
  .chain-link {
    width: 100%;
  }
  
  .chain-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
  
  .shift-content {
    flex-direction: column;
  }
  
  .shift-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .integrated-visual {
    height: 300px;
  }
  
  .integrated-element {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }
  
  .integrated-element i {
    font-size: 1.2rem;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .warning-card,
  .myth-card,
  .mistake-card,
  .redesign-card,
  .common-mistake .mistake-card {
    flex-direction: column;
    text-align: center;
  }
  
  .regulatory-body,
  .approach-phase,
  .benefit-item,
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  
  .evolution-timeline {
    flex-direction: column;
  }
  
  .timeline-item {
    width: 100%;
  }
  
  .case-phase {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .phase-title {
    min-width: auto;
  }
  
  .integrated-visual {
    height: 250px;
  }
  
  .article-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .share-buttons {
    justify-content: center;
  }
}

/* Animation for integrated elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.integrated-element {
  animation: float 3s ease-in-out infinite;
}

.integrated-element:nth-child(2) {
  animation-delay: 0.2s;
}

.integrated-element:nth-child(3) {
  animation-delay: 0.4s;
}

.integrated-element:nth-child(4) {
  animation-delay: 0.6s;
}

.integrated-element:nth-child(5) {
  animation-delay: 0.8s;
}

.integrated-element:nth-child(6) {
  animation-delay: 1s;
}

/* Print styles */
@media print {
  .school-facilities-hero {
    background: white !important;
    color: black !important;
  }
  
  .school-facilities-hero .article-category {
    background: #f39c12 !important;
    color: white !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  .warning-card,
  .reality-card,
  .regulatory-card,
  .gap-stage,
  .case-card,
  .standards-card,
  .focus-card,
  .plot-card,
  .analysis-card,
  .insight-card,
  .case-study-card,
  .surprise-card,
  .multiplier-card,
  .impact-card,
  .benefits-column,
  .value-card,
  .roi-card,
  .process-step,
  .comparison-card,
  .role-card,
  .services-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  
  .integrated-visual {
    display: none;
  }
  
  .cta-button {
    display: none !important;
  }
}