.dashboard-highlights {
    background-color: #234754;
    padding: 80px 20px;
    color: #fff;
  }
  
  .dashboard-container {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  
  .dashboard-card {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .dashboard-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 6px solid #234754;
  }
  
  .dashboard-icon img {
    max-width: 100%;
    height: auto;
  }
  
  .dashboard-card p {
    color: #234754;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
  }
  