/* Indian School UAE Specific Styles */

/* Hero Section */
.education-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
}

.education-hero .hero-subtitle {
  font-size: 1.3rem;
  margin: 1rem 0 1.5rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Stats Banner */
.stats-banner {
  background: #f8f9fa;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eaeaea;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2a5298;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #495057;
}

/* Key Insights */
.key-insights {
  background: #f0f7ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #2a5298;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.insight-card {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.insight-card i {
  color: #2a5298;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.insight-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* Quick Navigation */
.quick-nav {
  margin: 2rem 0;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.nav-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #2a5298;
}

.nav-card i {
  font-size: 1.5rem;
  color: #2a5298;
}

.nav-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Demographic Analysis */
.demographic-analysis {
  margin: 2rem 0;
}

.demographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.demo-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.demo-header {
  background: #2a5298;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.demo-header i {
  font-size: 1.2rem;
}

.demo-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.demo-content {
  padding: 1.5rem 1rem;
  text-align: center;
}

.demo-stat {
  font-size: 2rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #2a5298, #1e3c72);
  border-radius: 3px;
}

/* School Stats */
.school-stats {
  margin: 2.5rem 0;
}

.stats-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.stat-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eaeaea;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-title {
  flex: 2;
  font-weight: 500;
}

.stat-value {
  flex: 1;
  font-weight: 700;
  color: #2a5298;
  text-align: right;
}

.stat-trend {
  flex: 1;
  text-align: right;
  font-size: 0.9rem;
  color: #28a745;
}

.stat-trend i {
  margin-right: 0.3rem;
}

/* Market Drivers */
.market-drivers {
  margin: 2.5rem 0;
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.driver-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.driver-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2a5298;
  font-size: 1.5rem;
}

.driver-card h4 {
  margin: 0 0 1rem;
  color: #212529;
}

.driver-card p {
  font-size: 0.9rem;
  color: #495057;
  margin: 0;
}

/* Location Cards */
.location-group {
  margin: 2.5rem 0;
}

.location-group h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #eaeaea;
}

.location-card {
  background: white;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.location-card.highlight {
  border-color: #2a5298;
  box-shadow: 0 5px 20px rgba(42, 82, 152, 0.15);
}

.location-header {
  background: #f8f9fa;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
}

.location-header h4 {
  margin: 0;
  color: #212529;
}

.location-rating {
  background: #2a5298;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.location-content {
  padding: 1.5rem;
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eaeaea;
}

.loc-stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.loc-stat i {
  color: #2a5298;
  width: 20px;
  text-align: center;
}

.loc-stat span {
  font-size: 0.95rem;
}

.location-analysis h5 {
  margin: 0 0 1rem;
  color: #212529;
}

.location-analysis ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-analysis li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.location-analysis i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #2a5298;
}

.location-potential {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eaeaea;
}

.potential-meter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.potential-label {
  flex: 1;
  font-weight: 500;
}

.potential-bar {
  flex: 2;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.potential-fill {
  height: 100%;
  background: linear-gradient(to right, #2a5298, #1e3c72);
  border-radius: 4px;
}

.potential-value {
  flex: 0 0 50px;
  text-align: right;
  font-weight: 700;
  color: #2a5298;
}

/* Additional Locations */
.additional-locations {
  margin: 2.5rem 0;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.additional-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.additional-card h4 {
  margin: 0 0 1rem;
  color: #212529;
}

.additional-card p {
  font-size: 0.9rem;
  color: #495057;
  margin: 0 0 1rem;
}

.add-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6c757d;
}

.add-stat i {
  color: #2a5298;
}

/* Regulatory Requirements */
.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.authority-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.authority-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2a5298;
  font-size: 1.5rem;
}

.authority-card h4 {
  margin: 0 0 0.5rem;
  color: #212529;
}

.authority-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0 0 1rem;
}

.authority-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.authority-card li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.authority-card li:before {
  content: "•";
  color: #2a5298;
  position: absolute;
  left: 0;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.requirement-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
  padding-top: 2.5rem;
}

.req-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: #2a5298;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.requirement-card h4 {
  margin: 0 0 1rem;
  color: #212529;
}

.requirement-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-card li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}

.requirement-card li:before {
  content: "✓";
  color: #2a5298;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.compliance-timeline {
  margin: 3rem 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 2rem;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: #2a5298;
}

.timeline-phase {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.phase-marker {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid #2a5298;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #2a5298;
  margin-right: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.phase-content {
  background: white;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  flex: 1;
}

.phase-content h5 {
  margin: 0 0 0.5rem;
  color: #212529;
}

.phase-content p {
  font-size: 0.9rem;
  color: #495057;
  margin: 0;
}

/* Strategy Comparison */
.strategy-comparison {
  margin: 2.5rem 0;
}

.comparison-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.strategy-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.strategy-header {
  background: #2a5298;
  color: white;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strategy-header i {
  font-size: 1.5rem;
}

.strategy-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.strategy-content {
  padding: 1.5rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pros h5, .cons h5 {
  margin: 0 0 1rem;
  color: #212529;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li, .cons li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.pros i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #28a745;
}

.cons i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #dc3545;
}

.cost-example {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1.5rem;
}

.cost-example h5 {
  margin: 0 0 0.5rem;
  color: #212529;
}

.cost-example p {
  font-size: 0.9rem;
  color: #495057;
  margin: 0;
}

/* Implementation Roadmap */
.roadmap-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -2rem;
  left: 25px;
  width: 2px;
  background: #eaeaea;
  z-index: 1;
}

.step:last-child:before {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2a5298;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  position: relative;
  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 1rem;
  color: #212529;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-content li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}

.step-content li:before {
  content: "•";
  color: #2a5298;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Financial Models */
.model-tabs {
  margin-top: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tab-button {
  background: #e9ecef;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: #dee2e6;
}

.tab-button.active {
  background: #2a5298;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.model-details {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.model-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eaeaea;
}

.model-header h4 {
  margin: 0;
  color: #212529;
}

.model-tag {
  background: #e6f7ff;
  color: #1890ff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.model-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.model-stat {
  text-align: center;
}

.stat-title {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
}

.investment-breakdown {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.investment-breakdown h5 {
  margin: 0 0 1.5rem;
  color: #212529;
}

.breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-label {
  flex: 1;
  font-size: 0.9rem;
}

.item-value {
  flex: 0 0 100px;
  text-align: right;
  font-weight: 600;
  color: #2a5298;
}

.item-bar {
  flex: 2;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, #2a5298, #1e3c72);
  border-radius: 4px;
}

.total-investment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
  font-size: 1.1rem;
}

.total-investment strong {
  color: #2a5298;
  font-size: 1.3rem;
}

.roi-calculation {
  margin-top: 2rem;
}

.roi-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.roi-stat {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #eaeaea;
}

.roi-title {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.roi-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a5298;
}

/* Fee Comparison Table */
.fee-comparison {
  margin: 3rem 0;
}

.fee-table {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.fee-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;
}

.fee-table th {
  background: #2a5298;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.fee-table td {
  padding: 1rem;
  border-bottom: 1px solid #eaeaea;
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-table tr:nth-child(even) {
  background: #f8f9fa;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #f0f7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2a5298;
  font-size: 1.3rem;
}

.service-card h4 {
  margin: 0 0 1rem;
  color: #212529;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li:before {
  content: "✓";
  color: #2a5298;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Case Study */
.case-study {
  background: #f0f7ff;
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.case-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.case-stat {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.case-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 0.5rem;
}

.case-label {
  font-size: 0.85rem;
  color: #495057;
}

.case-description {
  padding: 1rem;
}

.case-description p {
  margin-bottom: 1.5rem;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #2a5298;
  border: 2px solid #2a5298;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #2a5298;
  color: white;
}

/* Key Takeaways */
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.takeaway-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.takeaway-icon {
  width: 50px;
  height: 50px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2a5298;
  font-size: 1.3rem;
}

.takeaway-card h4 {
  margin: 0 0 1rem;
  color: #212529;
}

.takeaway-card p {
  font-size: 0.9rem;
  color: #495057;
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #2a5298;
}

.cta-box h3 {
  margin: 0 0 1rem;
  color: #212529;
}

.cta-box p {
  margin-bottom: 1.5rem;
  color: #495057;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #2a5298;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1e3c72;
  transform: translateY(-2px);
}

/* Author Bio Enhanced */
.author-bio {
  text-align: center;
}

.author-icon {
  width: 80px;
  height: 80px;
  background: #2a5298;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.author-bio h4 {
  margin: 0 0 0.5rem;
  color: #212529;
}

.author-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.author-stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #6c757d;
}

/* Resources List */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.resource-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.resource-item i.fa-download {
  margin-left: auto;
  color: #2a5298;
}

.resource-item h4 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  color: #212529;
}

.resource-item span {
  font-size: 0.8rem;
  color: #6c757d;
}

/* More Articles Section */
.more-articles {
  padding: 4rem 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #212529;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.category {
  display: inline-block;
  background: #e6f7ff;
  color: #1890ff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.card-content h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: #212529;
}

.card-content p {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2a5298;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comparison-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    width: 100%;
  }
  
  .model-stats, .case-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demographic-grid, .drivers-grid, .additional-grid {
    grid-template-columns: 1fr;
  }
  
  .location-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .stat-value, .stat-trend {
    text-align: left;
  }
  
  .model-stats, .case-stats, .roi-stats {
    grid-template-columns: 1fr;
  }
  
  .services-grid, .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-grid, .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .authority-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .header, .footer, .more-articles, .sidebar,
  .share-buttons, .cta-buttons, .newsletter-widget {
    display: none !important;
  }
  
  .article-content {
    padding: 0 !important;
  }
  
  .content-wrapper {
    display: block !important;
  }
  
  .main-content {
    width: 100% !important;
  }
  
  .location-card, .strategy-card, .service-card {
    break-inside: avoid;
  }
}