/* Property Investment Specific Styles */
    .property-hero {
      background: linear-gradient(135deg, #1a2a6c 0%, #2a4b8d 50%, #3a6bc0 100%);
      color: white;
      padding: 6rem 0 3rem;
    }
    
    .property-hero .hero-text h1 {
      color: white;
    }
    
    .property-hero .article-category {
      background: rgba(255,255,255,0.2);
      color: white;
    }
    
    .property-hero .article-meta {
      color: rgba(255,255,255,0.8);
    }
    
    .property-hero .tag {
      background: rgba(255,255,255,0.2);
      color: white;
    }
    
    .term-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      border-left: 5px solid #2a4b8d;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .term-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .term-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .term-icon {
      width: 60px;
      height: 60px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: #2a4b8d;
      font-size: 24px;
    }
    
    .term-title {
      flex: 1;
    }
    
    .term-title h2 {
      margin: 0;
      color: #2a4b8d;
      font-size: 1.6rem;
    }
    
    .term-badge {
      background: #2a4b8d;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
    }
    
    .formula-box {
      background: #f8f9fa;
      border-radius: 8px;
      padding: 15px;
      margin: 15px 0;
      border-left: 4px solid #2a4b8d;
    }
    
    .formula {
      font-family: 'Courier New', monospace;
      font-size: 1.1rem;
      font-weight: 600;
      color: #2a4b8d;
      text-align: center;
      margin: 10px 0;
    }
    
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 25px 0;
    }
    
    .comparison-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    .comparison-card.off-plan {
      border-top: 4px solid #e74c3c;
    }
    
    .comparison-card.ready {
      border-top: 4px solid #2ecc71;
    }
    
    .comparison-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .comparison-header i {
      font-size: 1.5rem;
      margin-right: 10px;
    }
    
    .comparison-header.off-plan i {
      color: #e74c3c;
    }
    
    .comparison-header.ready i {
      color: #2ecc71;
    }
    
    .comparison-list {
      list-style: none;
      padding: 0;
    }
    
    .comparison-list li {
      padding: 8px 0;
      border-bottom: 1px solid #f8f9fa;
      display: flex;
      align-items: flex-start;
    }
    
    .comparison-list li:last-child {
      border-bottom: none;
    }
    
    .comparison-list i {
      margin-right: 10px;
      margin-top: 3px;
    }
    
    .comparison-list .fa-check {
      color: #2ecc71;
    }
    
    .comparison-list .fa-times {
      color: #e74c3c;
    }
    
    .developer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
      margin: 20px 0;
    }
    
    .developer-card {
      background: white;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    
    .developer-card:hover {
      transform: translateY(-5px);
    }
    
    .developer-logo {
      width: 60px;
      height: 60px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      color: #2a4b8d;
      font-size: 24px;
    }
    
    .developer-card h4 {
      margin: 0;
      font-size: 1rem;
    }
    
    .process-flow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 30px 0;
      position: relative;
    }
    
    .process-step {
      text-align: center;
      flex: 1;
      position: relative;
    }
    
    .step-number {
      width: 40px;
      height: 40px;
      background: #2a4b8d;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      font-weight: 600;
    }
    
    .step-connector {
      position: absolute;
      top: 20px;
      left: 50%;
      width: 100%;
      height: 2px;
      background: #e9ecef;
      z-index: -1;
    }
    
    .step-connector:before {
      content: '';
      position: absolute;
      top: -3px;
      left: 0;
      width: 8px;
      height: 8px;
      background: #2a4b8d;
      border-radius: 50%;
    }
    
    .yield-calculator {
      background: white;
      border-radius: 10px;
      padding: 25px;
      margin: 30px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .calculator-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .calculator-inputs, .calculator-results {
      padding: 15px;
    }
    
    .calculator-input {
      margin-bottom: 15px;
    }
    
    .calculator-input label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }
    
    .calculator-input input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
    }
    
    .calculator-result {
      background: #f8f9fa;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 15px;
      text-align: center;
    }
    
    .result-value {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2a4b8d;
      margin: 10px 0;
    }
    
    .property-visual {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 25px;
      margin: 30px 0;
      text-align: center;
    }
    
    .visual-container {
      height: 200px;
      background: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px 0;
      position: relative;
      overflow: hidden;
    }
    
    .building-animation {
      display: flex;
      align-items: flex-end;
      height: 150px;
    }
    
    .building-section {
      width: 30px;
      margin: 0 5px;
      background: #2a4b8d;
      border-radius: 5px 5px 0 0;
      transition: height 0.5s ease;
    }
    
    .investment-timeline {
      margin: 30px 0;
    }
    
    .timeline-bar {
      height: 10px;
      background: #e9ecef;
      border-radius: 5px;
      margin: 20px 0;
      position: relative;
      overflow: hidden;
    }
    
    .timeline-progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: #2a4b8d;
      border-radius: 5px;
      width: 0;
      transition: width 1s ease;
    }
    
    .timeline-milestones {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
    }
    
    .timeline-milestone {
      text-align: center;
      font-size: 0.9rem;
    }
    
    .milestone-marker {
      width: 20px;
      height: 20px;
      background: #e9ecef;
      border-radius: 50%;
      margin: 0 auto 5px;
      position: relative;
    }
    
    .milestone-marker.active {
      background: #2a4b8d;
    }
    
    @media (max-width: 768px) {
      .comparison-grid {
        grid-template-columns: 1fr;
      }
      
      .calculator-grid {
        grid-template-columns: 1fr;
      }
      
      .process-flow {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .process-step {
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
        display: flex;
        align-items: center;
      }
      
      .step-number {
        margin: 0 15px 0 0;
        flex-shrink: 0;
      }
      
      .step-connector {
        display: none;
      }
      
      .developer-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
    }

    /* Property Investment Specific Styles */
.property-hero {
  background: linear-gradient(135deg, #1a2a6c 0%, #2a4b8d 50%, #3a6bc0 100%);
  color: white;
  padding: 6rem 0 3rem;
}

.property-hero .hero-text h1 {
  color: white;
}

.property-hero .article-category {
  background: rgba(255,255,255,0.2);
  color: white;
}

.property-hero .article-meta {
  color: rgba(255,255,255,0.8);
}

.property-hero .tag {
  background: rgba(255,255,255,0.2);
  color: white;
}

.term-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 5px solid #2a4b8d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.term-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.term-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #2a4b8d;
  font-size: 24px;
}

.term-title {
  flex: 1;
}

.term-title h2 {
  margin: 0;
  color: #2a4b8d;
  font-size: 1.6rem;
}

.term-badge {
  background: #2a4b8d;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.formula-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  border-left: 4px solid #2a4b8d;
}

.formula {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a4b8d;
  text-align: center;
  margin: 10px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.comparison-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.comparison-card.off-plan {
  border-top: 4px solid #e74c3c;
}

.comparison-card.ready {
  border-top: 4px solid #2ecc71;
}

.comparison-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.comparison-header i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.comparison-header.off-plan i {
  color: #e74c3c;
}

.comparison-header.ready i {
  color: #2ecc71;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  align-items: flex-start;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list i {
  margin-right: 10px;
  margin-top: 3px;
}

.comparison-list .fa-check {
  color: #2ecc71;
}

.comparison-list .fa-times {
  color: #e74c3c;
}

.developer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.developer-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.developer-card:hover {
  transform: translateY(-5px);
}

.developer-logo {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #2a4b8d;
  font-size: 24px;
}

.developer-card h4 {
  margin: 0;
  font-size: 1rem;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  position: relative;
}

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #2a4b8d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
}

.step-connector {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e9ecef;
  z-index: -1;
}

.step-connector:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #2a4b8d;
  border-radius: 50%;
}

.yield-calculator {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calculator-inputs, .calculator-results {
  padding: 15px;
}

.calculator-input {
  margin-bottom: 15px;
}

.calculator-input label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.calculator-input input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.calculator-result {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
}

.result-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a4b8d;
  margin: 10px 0;
}

.property-visual {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}

.visual-container {
  height: 200px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.building-animation {
  display: flex;
  align-items: flex-end;
  height: 150px;
}

.building-section {
  width: 30px;
  margin: 0 5px;
  background: #2a4b8d;
  border-radius: 5px 5px 0 0;
  transition: height 0.5s ease;
}

.investment-timeline {
  margin: 30px 0;
}

.timeline-bar {
  height: 10px;
  background: #e9ecef;
  border-radius: 5px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #2a4b8d;
  border-radius: 5px;
  width: 0;
  transition: width 1s ease;
}

.timeline-milestones {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.timeline-milestone {
  text-align: center;
  font-size: 0.9rem;
}

.milestone-marker {
  width: 20px;
  height: 20px;
  background: #e9ecef;
  border-radius: 50%;
  margin: 0 auto 5px;
  position: relative;
}

.milestone-marker.active {
  background: #2a4b8d;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .process-flow {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-step {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
  }
  
  .step-number {
    margin: 0 15px 0 0;
    flex-shrink: 0;
  }
  
  .step-connector {
    display: none;
  }
  
  .developer-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}